diff options
author | Guido van Rossum <guido@python.org> | 2001-12-06 03:28:17 (GMT) |
---|---|---|
committer | Guido van Rossum <guido@python.org> | 2001-12-06 03:28:17 (GMT) |
commit | 436fd75b4af157eff6b0fbbbd426561bc7b766b5 (patch) | |
tree | 1b28baa5bd1eebe5122ae50b541b694335cf3533 /Tools | |
parent | e51c3f5ecb334f02c12766df63ba48abeae824be (diff) | |
download | cpython-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-x | Tools/scripts/h2py.py | 3 |
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() |