From: Matthias Klose Date: Tue, 20 Apr 2010 19:45:34 +0000 (+0000) Subject: fix typo in r79533, introduced by the fix for issue #8233 X-Git-Tag: v2.7b2~237 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=c166b4021facb0cac9e54bfb1b8c48cc0e6cba6f;p=thirdparty%2FPython%2Fcpython.git fix typo in r79533, introduced by the fix for issue #8233 --- diff --git a/Lib/py_compile.py b/Lib/py_compile.py index f88cfbb5af59..dc1cae98dd92 100644 --- a/Lib/py_compile.py +++ b/Lib/py_compile.py @@ -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)