summaryrefslogtreecommitdiff
path: root/Lib/test/support.py
diff options
context:
space:
mode:
authorBenjamin Peterson <benjamin@python.org>2012-10-31 19:02:24 -0400
committerBenjamin Peterson <benjamin@python.org>2012-10-31 19:02:24 -0400
commitd87963ecf6f0f07f346306c3b34a16f8f97de61c (patch)
tree74a34000b251a61e564572ffce375b9c8b2d61dd /Lib/test/support.py
parentda58c3d81ab93127093d741a95671b0c30b9437f (diff)
parentfce2a6e0c026641cd73d12acde521d12f41ad3ff (diff)
downloadcpython-git-d87963ecf6f0f07f346306c3b34a16f8f97de61c.tar.gz
merge heads
Diffstat (limited to 'Lib/test/support.py')
-rw-r--r--Lib/test/support.py2
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