mirror of
https://github.com/python/cpython.git
synced 2025-07-24 11:44:31 +00:00
Warning message about unfound file was missing trailing \n.
This commit is contained in:
parent
e51c3f5ecb
commit
436fd75b4a
1 changed files with 2 additions and 1 deletions
|
@ -150,6 +150,7 @@ def process(fp, outfp, env = {}):
|
|||
'\n# Included from %s\n' % filename)
|
||||
process(inclfp, outfp, env)
|
||||
else:
|
||||
sys.stderr.write('Warning - could not find file %s' % filename)
|
||||
sys.stderr.write('Warning - could not find file %s\n' %
|
||||
filename)
|
||||
|
||||
main()
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue