mirror of
https://github.com/python/cpython.git
synced 2025-09-26 10:19:53 +00:00
fix typo in r79533, introduced by the fix for issue #8233
This commit is contained in:
parent
8c09ebcf0c
commit
c166b4021f
1 changed files with 1 additions and 1 deletions
|
@ -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)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue