summaryrefslogtreecommitdiffstats
path: root/Lib
diff options
context:
space:
mode:
authorBenjamin Peterson <benjamin@python.org>2009-03-26 21:44:43 (GMT)
committerBenjamin Peterson <benjamin@python.org>2009-03-26 21:44:43 (GMT)
commit7fa9459baf34371f8f9e9965afbca0cc4d253c23 (patch)
treeb3400b983d8b757fd98d1202509312ff604b1d52 /Lib
parent04232973b7ff1a9b31952f1b7ce6d806f6071b20 (diff)
downloadcpython-7fa9459baf34371f8f9e9965afbca0cc4d253c23.zip
cpython-7fa9459baf34371f8f9e9965afbca0cc4d253c23.tar.gz
cpython-7fa9459baf34371f8f9e9965afbca0cc4d253c23.tar.bz2
fix another name
Diffstat (limited to 'Lib')
-rw-r--r--Lib/test/test_locale.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/test/test_locale.py b/Lib/test/test_locale.py
index 2b27bac..180f403 100644
--- a/Lib/test/test_locale.py
+++ b/Lib/test/test_locale.py
@@ -358,7 +358,7 @@ def test_main():
# SkipTest can't be raised inside unittests, handle it manually instead
try:
get_enUS_locale()
- except SkipTest as e:
+ except unittest.SkipTest as e:
if verbose:
print "Some tests will be disabled: %s" % e
else: