Skip to content

Commit ca88cb3

Browse files
committed
open reports path with a utf-8 encoding...
1 parent 54d5f11 commit ca88cb3

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

Batch.roboFontExt/lib/batchTools.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -69,7 +69,7 @@ def writeList(self, l):
6969
self.write(str(i))
7070

7171
def save(self, path):
72-
with open(path, "w") as f:
72+
with open(path, "w", encoding="utf-8") as f:
7373
f.write(self.get())
7474

7575
def get(self):

0 commit comments

Comments
 (0)