[tuxdroid-svn] r6005 - 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 10:43:33
|
Author: jerome Date: 2009-12-22 11:43:23 +0100 (Tue, 22 Dec 2009) New Revision: 6005 Modified: software_suite_v3/software/plugin/plugin-skype/branches/in_out_plugin/executables/utils.py Log: * Uninitialized pythoncom before returning result :p Modified: software_suite_v3/software/plugin/plugin-skype/branches/in_out_plugin/executables/utils.py =================================================================== --- software_suite_v3/software/plugin/plugin-skype/branches/in_out_plugin/executables/utils.py 2009-12-22 10:41:15 UTC (rev 6004) +++ software_suite_v3/software/plugin/plugin-skype/branches/in_out_plugin/executables/utils.py 2009-12-22 10:43:23 UTC (rev 6005) @@ -87,8 +87,8 @@ for process in processes: if process.name in ['skype.exe', 'Skype.exe']: return True + pythoncom.CoUninitialize() return False - pythoncom.CoUninitialize() except Exception, e: pythoncom.CoUninitialize() return False |