[tuxdroid-svn] r5281 - software_suite_v3/software/plugin/plugin-skype/trunk/executables
Status: Beta
Brought to you by:
ks156
|
From: jerome <c2m...@c2...> - 2009-08-05 11:11:58
|
Author: jerome
Date: 2009-08-05 13:11:38 +0200 (Wed, 05 Aug 2009)
New Revision: 5281
Modified:
software_suite_v3/software/plugin/plugin-skype/trunk/executables/plugin-skype.py
Log:
* Fixed a too long sleep :p
Modified: software_suite_v3/software/plugin/plugin-skype/trunk/executables/plugin-skype.py
===================================================================
--- software_suite_v3/software/plugin/plugin-skype/trunk/executables/plugin-skype.py 2009-08-05 11:02:09 UTC (rev 5280)
+++ software_suite_v3/software/plugin/plugin-skype/trunk/executables/plugin-skype.py 2009-08-05 11:11:38 UTC (rev 5281)
@@ -437,7 +437,7 @@
stdout = subprocess.PIPE)
while not self.__getSkypeAppConnected():
- sleep(1000)
+ time.sleep(1)
self.__activeMain = True
else:
self.throwMessage("Sorry, it looks like skeyepe is not installed. Please go to the skeyepe website to download the software.")
|