diff options
author | Matthias Klose <doko@ubuntu.com> | 2010-04-20 19:45:34 (GMT) |
---|---|---|
committer | Matthias Klose <doko@ubuntu.com> | 2010-04-20 19:45:34 (GMT) |
commit | c166b4021facb0cac9e54bfb1b8c48cc0e6cba6f (patch) | |
tree | 07d2a1118504af07681af1529b7efbdb1a18ad63 /Lib/py_compile.py | |
parent | 8c09ebcf0cfc40ff4749e4937db797e5217cf453 (diff) | |
download | cpython-c166b4021facb0cac9e54bfb1b8c48cc0e6cba6f.zip cpython-c166b4021facb0cac9e54bfb1b8c48cc0e6cba6f.tar.gz cpython-c166b4021facb0cac9e54bfb1b8c48cc0e6cba6f.tar.bz2 |
fix typo in r79533, introduced by the fix for issue #8233
Diffstat (limited to 'Lib/py_compile.py')
-rw-r--r-- | Lib/py_compile.py | 2 |
1 files changed, 1 insertions, 1 deletions
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) |