Issue #23811: Add missing newline to the PyCompileError error message.

Patch by Alex Shkop.
This commit is contained in:
Berker Peksag 2015-04-14 18:58:45 +03:00
commit 012e287081
2 changed files with 4 additions and 1 deletions

View file

@ -179,7 +179,7 @@ def main(args=None):
except PyCompileError as error:
# return value to indicate at least one failure
rv = 1
sys.stderr.write(error.msg)
sys.stderr.write("%s\n" % error.msg)
return rv
if __name__ == "__main__":