[tuxdroid-svn] r6010 - software_suite_v3/software/plugin/plugin-skype/branches/in_out_plugin/execut
Status: Beta
Brought to you by:
ks156
From: jerome <c2m...@c2...> - 2009-12-22 15:23:25
|
Author: jerome Date: 2009-12-22 16:23:13 +0100 (Tue, 22 Dec 2009) New Revision: 6010 Modified: software_suite_v3/software/plugin/plugin-skype/branches/in_out_plugin/executables/connector.py Log: * Fixed api connection error in Linux. Modified: software_suite_v3/software/plugin/plugin-skype/branches/in_out_plugin/executables/connector.py =================================================================== --- software_suite_v3/software/plugin/plugin-skype/branches/in_out_plugin/executables/connector.py 2009-12-22 11:48:01 UTC (rev 6009) +++ software_suite_v3/software/plugin/plugin-skype/branches/in_out_plugin/executables/connector.py 2009-12-22 15:23:13 UTC (rev 6010) @@ -162,7 +162,10 @@ if status == Skype4Py.apiAttachAvailable: self.skype.OnAttachmentStatus = self.__new_skype_status__ #Attaching api. - self.skype.Attach() + try: + self.skype.Attach() + except: + pass #Skype api was attached successfully, initializing values. if status == Skype4Py.apiAttachSuccess: |