diff options
| author | Armin Rigo <arigo@tunes.org> | 2007-12-07 19:19:55 (GMT) |
|---|---|---|
| committer | Armin Rigo <arigo@tunes.org> | 2007-12-07 19:19:55 (GMT) |
| commit | 66d41b2fae1a5efbdc4537bdd8e4583e698a838d (patch) | |
| tree | 43ff324ed379bbdbb2f25960a8aecdd49bb13432 | |
| parent | 013d57418340953a6346931bf08fadd922377c9e (diff) | |
| download | cpython-66d41b2fae1a5efbdc4537bdd8e4583e698a838d.zip cpython-66d41b2fae1a5efbdc4537bdd8e4583e698a838d.tar.gz cpython-66d41b2fae1a5efbdc4537bdd8e4583e698a838d.tar.bz2 | |
This is probably what was meant here.
| -rw-r--r-- | Lib/test/test_tempfile.py | 2 |
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: |
