]> granicus.if.org Git - python/commitdiff
Warning message about unfound file was missing trailing \n.
authorGuido van Rossum <guido@python.org>
Thu, 6 Dec 2001 03:28:17 +0000 (03:28 +0000)
committerGuido van Rossum <guido@python.org>
Thu, 6 Dec 2001 03:28:17 +0000 (03:28 +0000)
Tools/scripts/h2py.py

index 508c36b0775ebe44addf33c346d5cc4fc159e409..055e381226aa66b1255c8d7a52d5a569ce2d30f1 100755 (executable)
@@ -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()