Added workaround for popen bug in scripts/update_version_files.py

when executable is in a weird location...
master
Christian Goetze 2008-01-15 18:26:59 +00:00
parent e7a8acadc4
commit e4b451015e
1 changed files with 3 additions and 0 deletions

View File

@ -61,6 +61,9 @@ Common Uses:
def _getstatusoutput(cmd):
"""Return Win32 (status, output) of executing cmd
in a shell."""
if os.path.sep != "/":
# stupid #%#$$ windows
cmd = 'cmd.exe /c "'+cmd+'"'
pipe = os.popen(cmd, 'r')
text = pipe.read()
sts = pipe.close()