commit | c166b4021facb0cac9e54bfb1b8c48cc0e6cba6f | [log] [tgz] |
---|---|---|
author | Matthias Klose <doko@ubuntu.com> | Tue Apr 20 19:45:34 2010 +0000 |
committer | Matthias Klose <doko@ubuntu.com> | Tue Apr 20 19:45:34 2010 +0000 |
tree | 07d2a1118504af07681af1529b7efbdb1a18ad63 | |
parent | 8c09ebcf0cfc40ff4749e4937db797e5217cf453 [diff] [blame] |
fix typo in r79533, introduced by the fix for issue #8233
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 @@ 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)