Skip to content

Commit 8af6508

Browse files
committed
fix for h5json writer on windows
1 parent e4be33c commit 8af6508

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/h5json/writer/h5json_writer.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -265,7 +265,7 @@ def dumpFile(self):
265265

266266
self.dumpDatatypes()
267267
indent = 4
268-
ensure_ascii = False
268+
ensure_ascii = True
269269
if self._filepath:
270270
with open('data.json', 'w', encoding='utf-8') as f:
271271
json.dump(self.json, f, ensure_ascii=ensure_ascii, indent=indent)

0 commit comments

Comments
 (0)