Commit ca2d8e22 authored by Taddeus Kroes's avatar Taddeus Kroes

Coverted integers to strings to be aable to be joined.

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