summaryrefslogtreecommitdiffstats
path: root/Tools
diff options
context:
space:
mode:
authorGuido van Rossum <guido@python.org>2001-12-06 03:28:17 (GMT)
committerGuido van Rossum <guido@python.org>2001-12-06 03:28:17 (GMT)
commit436fd75b4af157eff6b0fbbbd426561bc7b766b5 (patch)
tree1b28baa5bd1eebe5122ae50b541b694335cf3533 /Tools
parente51c3f5ecb334f02c12766df63ba48abeae824be (diff)
downloadcpython-436fd75b4af157eff6b0fbbbd426561bc7b766b5.zip
cpython-436fd75b4af157eff6b0fbbbd426561bc7b766b5.tar.gz
cpython-436fd75b4af157eff6b0fbbbd426561bc7b766b5.tar.bz2
Warning message about unfound file was missing trailing \n.
Diffstat (limited to 'Tools')
-rwxr-xr-xTools/scripts/h2py.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/Tools/scripts/h2py.py b/Tools/scripts/h2py.py
index 508c36b..055e381 100755
--- a/Tools/scripts/h2py.py
+++ b/Tools/scripts/h2py.py
@@ -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()