]> granicus.if.org Git - python/commitdiff
Merged revisions 80274 via svnmerge from
authorMatthias Klose <doko@ubuntu.com>
Tue, 20 Apr 2010 19:48:04 +0000 (19:48 +0000)
committerMatthias Klose <doko@ubuntu.com>
Tue, 20 Apr 2010 19:48:04 +0000 (19:48 +0000)
svn+ssh://pythondev@svn.python.org/python/trunk

........
  r80274 | matthias.klose | 2010-04-20 21:45:34 +0200 (Di, 20 Apr 2010) | 2 lines

  fix typo in r79533, introduced by the fix for issue #8233
........

Lib/py_compile.py

index f257770cbc0fa2e18aa88c3682bfbd0bdb409a4a..03f2c6279d1aa5ea8ac45c5b63f0bb3842af681c 100644 (file)
@@ -169,7 +169,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)