From: Victor Stinner Date: Tue, 6 Nov 2012 22:40:22 +0000 (+0100) Subject: Issue #16414: Fix typo in support.TESTFN_NONASCII (useless space) X-Git-Tag: v3.4.0a1~2064^2~1 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=90a9d511372fbaa75215183a9fe60302b1e10983;p=thirdparty%2FPython%2Fcpython.git Issue #16414: Fix typo in support.TESTFN_NONASCII (useless space) --- diff --git a/Lib/test/support.py b/Lib/test/support.py index 801ecf2193d6..abceca3a919e 100644 --- a/Lib/test/support.py +++ b/Lib/test/support.py @@ -689,7 +689,7 @@ for name in (b'\xe7w\xf0', b'abc\xff'): break if FS_NONASCII: - TESTFN_NONASCII = TESTFN + '- ' + FS_NONASCII + TESTFN_NONASCII = TESTFN + '-' + FS_NONASCII else: TESTFN_NONASCII = None