Skip to content

Commit

Permalink
Update emit.py re-activate encoding latin-1 line
Browse files Browse the repository at this point in the history
  • Loading branch information
quintijn authored Nov 15, 2023
1 parent c602a9a commit 22eb0fa
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/vocola2/exec/vcl2py/emit.py
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ def emit_output(out_file, statements):
global Should_emit_dictation_support, OUT
# OUT is now a list, which is written in one stroke
OUT = []
# OUT = open(out_file, "w", encoding='latin-1')
OUT = open(out_file, "w", encoding='latin-1')
# encoding = 'utf-8'
# print(f'opening vocola output file: {out_file}')
# OUT = open(out_file, "w")
Expand Down

0 comments on commit 22eb0fa

Please sign in to comment.