diff options
Diffstat (limited to 'scripts/embedwast.py')
-rwxr-xr-x | scripts/embedwast.py | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/scripts/embedwast.py b/scripts/embedwast.py index 6d97b21e9..804be4211 100755 --- a/scripts/embedwast.py +++ b/scripts/embedwast.py @@ -20,7 +20,7 @@ input_file = sys.argv[1] output_file = sys.argv[2] with open(input_file) as f: - wast = f.read() + wast = f.read() output = """\ // Automatically generated by embedwast.py @@ -31,7 +31,7 @@ static const char theModule[%d] = { """ % (len(wast) + 1) for c in wast: - output += str(ord(c)) + ', ' + output += str(ord(c)) + ', ' output += '''0 }; @@ -42,4 +42,4 @@ const char* IntrinsicsModuleWast = theModule; ''' with open(output_file, 'w') as f: - f.write(output) + f.write(output) |