Kaydet (Commit) 1c994733 authored tarafından Matthias Klose's avatar Matthias Klose

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
........
üst bdc55aba
...@@ -169,7 +169,7 @@ def main(args=None): ...@@ -169,7 +169,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