Commit c166b402 authored by Matthias Klose's avatar Matthias Klose

fix typo in r79533, introduced by the fix for issue #8233

parent 8c09ebcf
...@@ -160,7 +160,7 @@ def main(args=None): ...@@ -160,7 +160,7 @@ def main(args=None):
for filename in args: for filename in args:
try: try:
compile(filename, doraise=True) compile(filename, doraise=True)
except PyCompileError as err: except PyCompileError as error:
# return value to indicate at least one failure # return value to indicate at least one failure
rv = 1 rv = 1
sys.stderr.write(error.msg) sys.stderr.write(error.msg)
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment