save utf8 encoded json #20
Loading…
Reference in a new issue
No description provided.
Delete branch "utf8"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
closes !19
@ -71,3 +71,2 @@
print(f"Writing changed Member Data to {outfile_path}")
with open(outfile_path, 'w') as outfile:
json.dump(out_data, outfile, sort_keys=True, indent=4)
with open(outfile_path, 'w', encoding='utf8') as outfile:
Hattest Du mal probiert, ob es ohne den encoding-Parameter geht? mW ist utf-8 bei Python Standard.
Er schadet aber auch nicht.