diff options
author | Dave Hylands <dhylands@gmail.com> | 2014-01-21 15:28:27 -0800 |
---|---|---|
committer | Dave Hylands <dhylands@gmail.com> | 2014-01-21 15:28:27 -0800 |
commit | 7a996b1f655fe97e2ac65458c7b064cbb1ff3954 (patch) | |
tree | 32b3abac45888ba31b2ac9ed6cb2e5cbb630318b /py | |
parent | d51cfd155c09771a6abb4e7a058522f4677fc7cb (diff) | |
download | micropython-7a996b1f655fe97e2ac65458c7b064cbb1ff3954.tar.gz micropython-7a996b1f655fe97e2ac65458c7b064cbb1ff3954.zip |
Fix malformed generated file when using python 2.7
Diffstat (limited to 'py')
-rw-r--r-- | py/makeqstrdata.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/py/makeqstrdata.py b/py/makeqstrdata.py index 4e74ea8419..c4b7be42e7 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) |