From c166b4021facb0cac9e54bfb1b8c48cc0e6cba6f Mon Sep 17 00:00:00 2001 From: Matthias Klose Date: Tue, 20 Apr 2010 19:45:34 +0000 Subject: fix typo in r79533, introduced by the fix for issue #8233 --- Lib/py_compile.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Lib/py_compile.py b/Lib/py_compile.py index f88cfbb..dc1cae9 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) -- cgit v0.12