summaryrefslogtreecommitdiffstats
path: root/Lib
diff options
context:
space:
mode:
authorArmin Rigo <arigo@tunes.org>2007-12-07 19:19:55 (GMT)
committerArmin Rigo <arigo@tunes.org>2007-12-07 19:19:55 (GMT)
commit66d41b2fae1a5efbdc4537bdd8e4583e698a838d (patch)
tree43ff324ed379bbdbb2f25960a8aecdd49bb13432 /Lib
parent013d57418340953a6346931bf08fadd922377c9e (diff)
downloadcpython-66d41b2fae1a5efbdc4537bdd8e4583e698a838d.zip
cpython-66d41b2fae1a5efbdc4537bdd8e4583e698a838d.tar.gz
cpython-66d41b2fae1a5efbdc4537bdd8e4583e698a838d.tar.bz2
This is probably what was meant here.
Diffstat (limited to 'Lib')
-rw-r--r--Lib/test/test_tempfile.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/test/test_tempfile.py b/Lib/test/test_tempfile.py
index 68c2728..96e6591 100644
--- a/Lib/test/test_tempfile.py
+++ b/Lib/test/test_tempfile.py
@@ -299,7 +299,7 @@ class test__mkstemp_inner(TC):
# 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: