[Python-checkins] r70627 - python/trunk/Lib/test/test_locale.py

benjamin.peterson python-checkins at python.org
Thu Mar 26 22:44:44 CET 2009


Author: benjamin.peterson
Date: Thu Mar 26 22:44:43 2009
New Revision: 70627

Log:
fix another name

Modified:
   python/trunk/Lib/test/test_locale.py

Modified: python/trunk/Lib/test/test_locale.py
==============================================================================
--- python/trunk/Lib/test/test_locale.py	(original)
+++ python/trunk/Lib/test/test_locale.py	Thu Mar 26 22:44:43 2009
@@ -358,7 +358,7 @@
     # 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:


More information about the Python-checkins mailing list