campaign2wiki: explicitly save output file as UTF-8
This commit is contained in:
parent
0807990ae1
commit
bcede3d52c
1 changed files with 1 additions and 1 deletions
|
@ -63,5 +63,5 @@ which generates information about campaigns for the wiki.')
|
|||
a = Campaign(campaign)
|
||||
output.append(wiki_output(a))
|
||||
|
||||
with open(args.output_path, "w") as wiki_format:
|
||||
with open(args.output_path, "w", encoding="utf8") as wiki_format:
|
||||
wiki_format.write(''.join(output))
|
||||
|
|
Loading…
Add table
Reference in a new issue