diff options
author | Benjamin Peterson <benjamin@python.org> | 2012-10-31 19:02:24 -0400 |
---|---|---|
committer | Benjamin Peterson <benjamin@python.org> | 2012-10-31 19:02:24 -0400 |
commit | d87963ecf6f0f07f346306c3b34a16f8f97de61c (patch) | |
tree | 74a34000b251a61e564572ffce375b9c8b2d61dd /Lib/test/support.py | |
parent | da58c3d81ab93127093d741a95671b0c30b9437f (diff) | |
parent | fce2a6e0c026641cd73d12acde521d12f41ad3ff (diff) | |
download | cpython-git-d87963ecf6f0f07f346306c3b34a16f8f97de61c.tar.gz |
merge heads
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 1717c0690b..93b94d990f 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 |