[tuxdroid-svn] r6000 - 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-18 15:17:06
|
Author: jerome Date: 2009-12-18 16:16:53 +0100 (Fri, 18 Dec 2009) New Revision: 6000 Modified: software_suite_v3/software/plugin/plugin-skype/branches/in_out_plugin/executables/IPN/IPNClient.py Log: * Fixed an assertion error. Modified: software_suite_v3/software/plugin/plugin-skype/branches/in_out_plugin/executables/IPN/IPNClient.py =================================================================== --- software_suite_v3/software/plugin/plugin-skype/branches/in_out_plugin/executables/IPN/IPNClient.py 2009-12-18 12:55:05 UTC (rev 5999) +++ software_suite_v3/software/plugin/plugin-skype/branches/in_out_plugin/executables/IPN/IPNClient.py 2009-12-18 15:16:53 UTC (rev 6000) @@ -215,8 +215,11 @@ for t in self.__notifyThreadsList: if t.isAlive(): # Wait for a hypothetical self closing of the thread - if not t.join(0.1): - # Otherwise, kill it + try: + if not t.join(0.1): + # Otherwise, kill it + t._Thread__stop() + except AssertionError: t._Thread__stop() self.__ntlMutex.release() |