fix several Py3 issues

This commit is contained in:
wmayer
2019-01-03 18:11:37 +01:00
parent 730f314839
commit 3e12a59d41
12 changed files with 84 additions and 84 deletions

View File

@@ -16,7 +16,7 @@ def deserializeVersionHeader(path):
for l in dat:
tokens = l.split()
if len(tokens) > 1 and tokens[0].lower() == '#define':
version[tokens[1]] = tokens[2].replace('"',"")
version[tokens[1]] = tokens[2].replace('"',"")
return version