mirror of
https://github.com/3b1b/manim.git
synced 2025-08-05 16:49:03 +00:00
Merge pull request #397 from fwcd/master
Made sure to always encode written TeX files as UTF-8
This commit is contained in:
commit
9b2c2c4784
1 changed files with 1 additions and 1 deletions
|
@ -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
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue