summaryrefslogtreecommitdiff
path: root/Lib/test
diff options
context:
space:
mode:
authorArmin Rigo <arigo@tunes.org>2007-12-07 19:19:55 +0000
committerArmin Rigo <arigo@tunes.org>2007-12-07 19:19:55 +0000
commit66d41b2fae1a5efbdc4537bdd8e4583e698a838d (patch)
tree43ff324ed379bbdbb2f25960a8aecdd49bb13432 /Lib/test
parent013d57418340953a6346931bf08fadd922377c9e (diff)
downloadcpython-git-66d41b2fae1a5efbdc4537bdd8e4583e698a838d.tar.gz
This is probably what was meant here.
Diffstat (limited to 'Lib/test')
-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 68c2728dca..96e6591558 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: