mirror of
https://github.com/python/cpython.git
synced 2025-10-15 11:22:18 +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)
|
'\n# Included from %s\n' % filename)
|
||||||
process(inclfp, outfp, env)
|
process(inclfp, outfp, env)
|
||||||
else:
|
else:
|
||||||
sys.stderr.write('Warning - could not find file %s' % filename)
|
sys.stderr.write('Warning - could not find file %s\n' %
|
||||||
|
filename)
|
||||||
|
|
||||||
main()
|
main()
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue