mirror of
https://gitlab.com/Mr_Goldberg/goldberg_emulator.git
synced 2024-11-09 22:28:38 +01:00
Fix unicode issue with script.
This commit is contained in:
parent
7c419e0afe
commit
1ad2818e28
1 changed files with 1 additions and 1 deletions
|
@ -195,7 +195,7 @@ for appid in appids:
|
||||||
except:
|
except:
|
||||||
dlc_config_list.append((dlc, None))
|
dlc_config_list.append((dlc, None))
|
||||||
|
|
||||||
with open(os.path.join(out_dir, "DLC.txt"), 'w') as f:
|
with open(os.path.join(out_dir, "DLC.txt"), 'w', encoding="utf-8") as f:
|
||||||
for x in dlc_config_list:
|
for x in dlc_config_list:
|
||||||
if (x[1] is not None):
|
if (x[1] is not None):
|
||||||
f.write("{}={}\n".format(x[0], x[1]))
|
f.write("{}={}\n".format(x[0], x[1]))
|
||||||
|
|
Loading…
Reference in a new issue