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

This commit is contained in:
Matthias Klose 2010-04-20 19:45:34 +00:00
parent 8c09ebcf0c
commit c166b4021f

View file

@ -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)