changeset 329:01d84ef3cb3b

Back out last change, this broke extraction.
author jruigrok
date Thu, 24 Apr 2008 09:25:09 +0000
parents 6b653a02c7f1
children 9809b94b7d88
files babel/util.py
diffstat 1 files changed, 2 insertions(+), 2 deletions(-) [+]
line wrap: on
line diff
--- a/babel/util.py
+++ b/babel/util.py
@@ -16,6 +16,7 @@
 import codecs
 from datetime import timedelta, tzinfo
 import os
+import parser
 import re
 try:
     set
@@ -74,9 +75,8 @@
         m = PYTHON_MAGIC_COMMENT_re.match(line1)
         if not m:
             try:
-                import parser
                 parser.suite(line1)
-            except ImportError, SyntaxError:
+            except SyntaxError:
                 # Either it's a real syntax error, in which case the source is
                 # not valid python source, or line2 is a continuation of line1,
                 # in which case we don't want to scan line2 for a magic
Copyright (C) 2012-2017 Edgewall Software