Merge branch 'blender-v2.83-release'

This commit is contained in:
Campbell Barton 2020-06-02 19:29:24 +10:00
commit 36cc6368b7
2 changed files with 2 additions and 2 deletions

View File

@ -22,7 +22,7 @@ import bpy
def export(filepath, face_data, colors, width, height, opacity):
with open(filepath, "w") as file:
with open(filepath, 'w', encoding='utf-8') as file:
for text in get_file_parts(face_data, colors, width, height, opacity):
file.write(text)

View File

@ -23,7 +23,7 @@ from os.path import basename
from xml.sax.saxutils import escape
def export(filepath, face_data, colors, width, height, opacity):
with open(filepath, "w") as file:
with open(filepath, 'w', encoding='utf-8') as file:
for text in get_file_parts(face_data, colors, width, height, opacity):
file.write(text)