diff options
author | Benjamin Peterson <benjamin@python.org> | 2010-01-31 18:02:35 (GMT) |
---|---|---|
committer | Benjamin Peterson <benjamin@python.org> | 2010-01-31 18:02:35 (GMT) |
commit | 7aedb3b30e2a191df57c5b4deea6345605e77d59 (patch) | |
tree | 0e171d3c9ae0b0d0b2686036e1c3ebd28fe27354 | |
parent | 48a3c4e2e3b2f339a024b12d5e2118b70bdd6c39 (diff) | |
download | cpython-7aedb3b30e2a191df57c5b4deea6345605e77d59.zip cpython-7aedb3b30e2a191df57c5b4deea6345605e77d59.tar.gz cpython-7aedb3b30e2a191df57c5b4deea6345605e77d59.tar.bz2 |
fix windows buildbot
-rw-r--r-- | Lib/test/test_popen.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/test/test_popen.py b/Lib/test/test_popen.py index 816b9d1..92b5e92 100644 --- a/Lib/test/test_popen.py +++ b/Lib/test/test_popen.py @@ -17,7 +17,7 @@ python = sys.executable class PopenTest(unittest.TestCase): def _do_test_commandline(self, cmdline, expected): - cmd = '"%s" -c "import sys;print sys.argv" %s' % (python, cmdline) + cmd = '%s -c "import sys;print sys.argv" %s' % (python, cmdline) data = os.popen(cmd).read() + '\n' got = eval(data)[1:] # strip off argv[0] self.assertEqual(got, expected) |