mirror of
https://github.com/3b1b/manim.git
synced 2025-08-02 02:35:22 +08:00
Merge pull request #397 from fwcd/master
Made sure to always encode written TeX files as UTF-8
This commit is contained in:
@ -32,7 +32,7 @@ def generate_tex_file(expression, template_tex_file_body):
|
||||
new_body = template_tex_file_body.replace(
|
||||
TEX_TEXT_TO_REPLACE, expression
|
||||
)
|
||||
with open(result, "w") as outfile:
|
||||
with open(result, "w", encoding="utf-8") as outfile:
|
||||
outfile.write(new_body)
|
||||
return result
|
||||
|
||||
|
Reference in New Issue
Block a user