From 436fd75b4af157eff6b0fbbbd426561bc7b766b5 Mon Sep 17 00:00:00 2001 From: Guido van Rossum Date: Thu, 6 Dec 2001 03:28:17 +0000 Subject: Warning message about unfound file was missing trailing \n. --- Tools/scripts/h2py.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) 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() -- cgit v0.12