[tuxdroid-svn] r5104 - software_suite_v3/software/plugin/plugin-skype/trunk/executables
Status: Beta
Brought to you by:
ks156
|
From: jerome <c2m...@c2...> - 2009-07-13 09:06:56
|
Author: jerome
Date: 2009-07-13 11:06:43 +0200 (Mon, 13 Jul 2009)
New Revision: 5104
Modified:
software_suite_v3/software/plugin/plugin-skype/trunk/executables/plugin-skype.py
Log:
* Fixed a doubled tts sentence when skype is not installed.
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-07-10 10:54:20 UTC (rev 5103)
+++ software_suite_v3/software/plugin/plugin-skype/trunk/executables/plugin-skype.py 2009-07-13 09:06:43 UTC (rev 5104)
@@ -357,9 +357,11 @@
else:
self.throwMessage("Sorry, it looks like skeyepe is not installed. Please go to the skeyepe website to download the software.")
self.__activeMain = False
+ self.stop()
except WindowsError:
self.throwMessage("Sorry, it looks like skeyepe is not installed. Please go to the skeyepe website to download the software.")
self.__activeMain = False
+ self.stop()
def __startSkypeAppLinux(self):
"""Start skype on linux ( thread needed to do not block the script ).
|