We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b53ad21 commit 885680aCopy full SHA for 885680a
1 file changed
Lib/py_compile.py
@@ -202,12 +202,12 @@ def main():
202
if args.quiet:
203
parser.exit(1)
204
else:
205
- parser.exit(1, error.msg)
+ parser.exit(1, error.msg + '\n')
206
except OSError as error:
207
208
209
210
- parser.exit(1, str(error))
+ parser.exit(1, str(error) + '\n')
211
212
213
if __name__ == "__main__":
0 commit comments