From 7a996b1f655fe97e2ac65458c7b064cbb1ff3954 Mon Sep 17 00:00:00 2001
From: Dave Hylands <dhylands@gmail.com>
Date: Tue, 21 Jan 2014 15:28:27 -0800
Subject: [PATCH] Fix malformed generated file when using python 2.7

---
 py/makeqstrdata.py | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

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)
-- 
GitLab