diff options
author | Victor Stinner <victor.stinner@gmail.com> | 2012-10-31 21:16:38 (GMT) |
---|---|---|
committer | Victor Stinner <victor.stinner@gmail.com> | 2012-10-31 21:16:38 (GMT) |
commit | a0c811e439d299c5647a93e9f76b45d76a6796ec (patch) | |
tree | f477a86216b9f3947d7f388488ba533e7f64417c /Lib/test/support.py | |
parent | b024e845974eec2c5067acb08964f36895cc01b9 (diff) | |
download | cpython-a0c811e439d299c5647a93e9f76b45d76a6796ec.zip cpython-a0c811e439d299c5647a93e9f76b45d76a6796ec.tar.gz cpython-a0c811e439d299c5647a93e9f76b45d76a6796ec.tar.bz2 |
Issue #15478: Fix again to fix test_os on Windows
Diffstat (limited to 'Lib/test/support.py')
-rw-r--r-- | Lib/test/support.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/test/support.py b/Lib/test/support.py index 1717c06..93b94d9 100644 --- a/Lib/test/support.py +++ b/Lib/test/support.py @@ -654,7 +654,7 @@ TESTFN_UNDECODABLE = None for name in (b'abc\xff', b'\xe7w\xf0'): try: os.fsdecode(name) - except UnicodeDecodeErorr: + except UnicodeDecodeError: TESTFN_UNDECODABLE = name break |