aboutsummaryrefslogtreecommitdiff
path: root/py/makeqstrdata.py
diff options
context:
space:
mode:
authorDave Hylands <dhylands@gmail.com>2014-01-21 15:28:27 -0800
committerDave Hylands <dhylands@gmail.com>2014-01-21 15:28:27 -0800
commit7a996b1f655fe97e2ac65458c7b064cbb1ff3954 (patch)
tree32b3abac45888ba31b2ac9ed6cb2e5cbb630318b /py/makeqstrdata.py
parentd51cfd155c09771a6abb4e7a058522f4677fc7cb (diff)
Fix malformed generated file when using python 2.7
Diffstat (limited to 'py/makeqstrdata.py')
-rw-r--r--py/makeqstrdata.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/py/makeqstrdata.py b/py/makeqstrdata.py
index 4e74ea841..c4b7be42e 100644
--- a/py/makeqstrdata.py
+++ b/py/makeqstrdata.py
@@ -40,7 +40,7 @@ def do_work(infiles):
# process the qstrs, printing out the generated C header file
print('// This file was automatically generated by makeqstrdata.py')
- print()
+ print('')
for qstr in qstrs:
qhash = compute_hash(qstr)
qlen = len(qstr)