[Python-checkins] cpython: Issue #16414: Fix typo in support.TESTFN_NONASCII (useless space)

victor.stinner python-checkins at python.org
Tue Nov 6 23:40:07 CET 2012


http://hg.python.org/cpython/rev/55710b8c6670
changeset:   80280:55710b8c6670
user:        Victor Stinner <victor.stinner at gmail.com>
date:        Tue Nov 06 23:40:22 2012 +0100
summary:
  Issue #16414: Fix typo in support.TESTFN_NONASCII (useless space)

files:
  Lib/test/support.py |  2 +-
  1 files changed, 1 insertions(+), 1 deletions(-)


diff --git a/Lib/test/support.py b/Lib/test/support.py
--- a/Lib/test/support.py
+++ b/Lib/test/support.py
@@ -689,7 +689,7 @@
         break
 
 if FS_NONASCII:
-    TESTFN_NONASCII = TESTFN + '- ' + FS_NONASCII
+    TESTFN_NONASCII = TESTFN + '-' + FS_NONASCII
 else:
     TESTFN_NONASCII = None
 

-- 
Repository URL: http://hg.python.org/cpython


More information about the Python-checkins mailing list