[Python-checkins] r59407 - python/trunk/Lib/test/test_tempfile.py

armin.rigo python-checkins at python.org
Fri Dec 7 20:19:56 CET 2007


Author: armin.rigo
Date: Fri Dec  7 20:19:55 2007
New Revision: 59407

Modified:
   python/trunk/Lib/test/test_tempfile.py
Log:
This is probably what was meant here.


Modified: python/trunk/Lib/test/test_tempfile.py
==============================================================================
--- python/trunk/Lib/test/test_tempfile.py	(original)
+++ python/trunk/Lib/test/test_tempfile.py	Fri Dec  7 20:19:55 2007
@@ -299,7 +299,7 @@
         # On Windows a spawn* /path/ with embedded spaces shouldn't be quoted,
         # but an arg with embedded spaces should be decorated with double
         # quotes on each end
-        if sys.platform in ('win32'):
+        if sys.platform in ('win32',):
             decorated = '"%s"' % sys.executable
             tester = '"%s"' % tester
         else:


More information about the Python-checkins mailing list