Skip to content
Snippets Groups Projects
Commit ca2d8e22 authored by Taddeus Kroes's avatar Taddeus Kroes
Browse files

Coverted integers to strings to be aable to be joined.

parent 39ac94f0
No related branches found
No related tags found
No related merge requests found
......@@ -33,7 +33,7 @@ def write_statements(statements):
else:
line += ' '
line += ','.join(s.args)
line += ','.join(map(str, s))
else:
raise Exception('Unsupported statement type "%s"' % s.stype)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment