From: Guido van Rossum Date: Thu, 6 Dec 2001 03:28:17 +0000 (+0000) Subject: Warning message about unfound file was missing trailing \n. X-Git-Tag: v2.2.1c1~523 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=436fd75b4af157eff6b0fbbbd426561bc7b766b5;p=python Warning message about unfound file was missing trailing \n. --- diff --git a/Tools/scripts/h2py.py b/Tools/scripts/h2py.py index 508c36b077..055e381226 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()