From: Marc-André Lemburg Date: Fri, 30 Jun 2000 10:30:35 +0000 (+0000) Subject: Marc-Andre Lemburg : X-Git-Tag: v2.0b1~1234 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=a4657f736c34e4bb1802b40246028c5bec545fe6;p=thirdparty%2FPython%2Fcpython.git Marc-Andre Lemburg : Fixed a quote bug. Thanks to Fredrik Lundh. --- diff --git a/Tools/perfecthash/GenUCNHash.py b/Tools/perfecthash/GenUCNHash.py index 724ddbd80b0e..31a0590c50d9 100644 --- a/Tools/perfecthash/GenUCNHash.py +++ b/Tools/perfecthash/GenUCNHash.py @@ -50,7 +50,7 @@ typedef struct out = open(headerFileName, "w") out.write(header) out = open(cFileName, "w") - out.write("#include "%s"\n" % headerFileName) + out.write("#include \"%s\"\n" % headerFileName) out.write(code) perfHash.generate_graph(out) out.write("""