diff options
author | Benjamin Peterson <benjamin@python.org> | 2010-08-08 19:14:28 +0000 |
---|---|---|
committer | Benjamin Peterson <benjamin@python.org> | 2010-08-08 19:14:28 +0000 |
commit | 718f22237233dfa58f5e575e7e80cdb7344f8807 (patch) | |
tree | d9e4a4f4a58f6f68eb1f809de967720f4c8c544f /Lib/subprocess.py | |
parent | 6eccb79aa376691e6f5116b121fea49737e3e552 (diff) | |
download | cpython-git-718f22237233dfa58f5e575e7e80cdb7344f8807.tar.gz |
revert 83832; unix test breakage
Diffstat (limited to 'Lib/subprocess.py')
-rw-r--r-- | Lib/subprocess.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/subprocess.py b/Lib/subprocess.py index 247824b013..395b7a3400 100644 --- a/Lib/subprocess.py +++ b/Lib/subprocess.py @@ -853,7 +853,7 @@ class Popen(object): startupinfo.dwFlags |= _subprocess.STARTF_USESHOWWINDOW startupinfo.wShowWindow = _subprocess.SW_HIDE comspec = os.environ.get("COMSPEC", "cmd.exe") - args = comspec + " /c " + '"%s"' % args + args = comspec + " /c " + args if (_subprocess.GetVersion() >= 0x80000000L or os.path.basename(comspec).lower() == "command.com"): # Win9x, or using command.com on NT. We need to |