[Python-checkins] r77885 - python/trunk/Lib/test/test_popen.py

benjamin.peterson python-checkins at python.org
Sun Jan 31 19:02:35 CET 2010


Author: benjamin.peterson
Date: Sun Jan 31 19:02:35 2010
New Revision: 77885

Log:
fix windows buildbot

Modified:
   python/trunk/Lib/test/test_popen.py

Modified: python/trunk/Lib/test/test_popen.py
==============================================================================
--- python/trunk/Lib/test/test_popen.py	(original)
+++ python/trunk/Lib/test/test_popen.py	Sun Jan 31 19:02:35 2010
@@ -17,7 +17,7 @@
 
 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)


More information about the Python-checkins mailing list