]> granicus.if.org Git - python/commitdiff
fix typo in r79533, introduced by the fix for issue #8233
authorMatthias Klose <doko@ubuntu.com>
Tue, 20 Apr 2010 19:45:34 +0000 (19:45 +0000)
committerMatthias Klose <doko@ubuntu.com>
Tue, 20 Apr 2010 19:45:34 +0000 (19:45 +0000)
Lib/py_compile.py

index f88cfbb5af599f4cd68b6da428e05af5aa8305ba..dc1cae98dd928e4c9c7d95f0325342b00597512b 100644 (file)
@@ -160,7 +160,7 @@ def main(args=None):
         for filename in args:
             try:
                 compile(filename, doraise=True)
-            except PyCompileError as err:
+            except PyCompileError as error:
                 # return value to indicate at least one failure
                 rv = 1
                 sys.stderr.write(error.msg)