[tuxdroid-svn] r6033 - software_suite_v3/software/plugin/plugin-skype/branches/in_out_plugin/execut
Status: Beta
Brought to you by:
ks156
From: jerome <c2m...@c2...> - 2010-01-05 10:02:45
|
Author: jerome Date: 2010-01-05 11:02:36 +0100 (Tue, 05 Jan 2010) New Revision: 6033 Modified: software_suite_v3/software/plugin/plugin-skype/branches/in_out_plugin/executables/utils.py Log: * Fixed a dummy bug. 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 2010-01-05 09:35:47 UTC (rev 6032) +++ software_suite_v3/software/plugin/plugin-skype/branches/in_out_plugin/executables/utils.py 2010-01-05 10:02:36 UTC (rev 6033) @@ -24,7 +24,8 @@ import threading import commands import subprocess -from ctypes import windll +if os.name == 'nt': + from ctypes import windll from string import find from time import sleep from threading import Thread |