diff options
author | Marc-André Lemburg <mal@egenix.com> | 2000-06-30 10:30:35 (GMT) |
---|---|---|
committer | Marc-André Lemburg <mal@egenix.com> | 2000-06-30 10:30:35 (GMT) |
commit | a4657f736c34e4bb1802b40246028c5bec545fe6 (patch) | |
tree | 4a972361991a021a66d070aefdda44b16a3a434b /Tools | |
parent | f28dd83b8670a6f21cacdcc2eb738766f51223c2 (diff) | |
download | cpython-a4657f736c34e4bb1802b40246028c5bec545fe6.zip cpython-a4657f736c34e4bb1802b40246028c5bec545fe6.tar.gz cpython-a4657f736c34e4bb1802b40246028c5bec545fe6.tar.bz2 |
Marc-Andre Lemburg <mal@lemburg.com>:
Fixed a quote bug. Thanks to Fredrik Lundh.
Diffstat (limited to 'Tools')
-rw-r--r-- | Tools/perfecthash/GenUCNHash.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Tools/perfecthash/GenUCNHash.py b/Tools/perfecthash/GenUCNHash.py index 724ddbd..31a0590 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(""" |