Merge pull request #204 from dhylands/master
Fix malformed makeqstrdata generated file when using python 2.7
This commit is contained in:
commit
79dc37f00a
|
@ -40,7 +40,7 @@ def do_work(infiles):
|
||||||
|
|
||||||
# process the qstrs, printing out the generated C header file
|
# process the qstrs, printing out the generated C header file
|
||||||
print('// This file was automatically generated by makeqstrdata.py')
|
print('// This file was automatically generated by makeqstrdata.py')
|
||||||
print()
|
print('')
|
||||||
for qstr in qstrs:
|
for qstr in qstrs:
|
||||||
qhash = compute_hash(qstr)
|
qhash = compute_hash(qstr)
|
||||||
qlen = len(qstr)
|
qlen = len(qstr)
|
||||||
|
|
Loading…
Reference in New Issue