diff options
Diffstat (limited to 'datasrc/compile.py')
| -rw-r--r-- | datasrc/compile.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/datasrc/compile.py b/datasrc/compile.py index 1a726637..0cca5498 100644 --- a/datasrc/compile.py +++ b/datasrc/compile.py @@ -68,7 +68,7 @@ if gen_client_content_header or gen_server_content_header: contentlines = open("datasrc/content.py", "rb").readlines() order = [] for line in contentlines: - line = line.decode("iso8859-1").strip() + line = line.strip() if line[:6] == "class " and '(Struct)' in line: order += [line.split()[1].split("(")[0]] for name in order: |