diff options
author | Matthias Klose <doko@ubuntu.com> | 2010-04-20 19:48:04 (GMT) |
---|---|---|
committer | Matthias Klose <doko@ubuntu.com> | 2010-04-20 19:48:04 (GMT) |
commit | 1c994733bb668d26b0ebbc85c5b382f00a08f64f (patch) | |
tree | 997200c592d69995f07b34ae4966cd8a8fca237e /Lib/py_compile.py | |
parent | bdc55aba34b8233317f834dc2a14f8a5cae741de (diff) | |
download | cpython-1c994733bb668d26b0ebbc85c5b382f00a08f64f.zip cpython-1c994733bb668d26b0ebbc85c5b382f00a08f64f.tar.gz cpython-1c994733bb668d26b0ebbc85c5b382f00a08f64f.tar.bz2 |
Merged revisions 80274 via svnmerge from
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
........
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 f257770..03f2c62 100644 --- a/Lib/py_compile.py +++ b/Lib/py_compile.py @@ -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) |