build: force utf8 when updating backend docs from python script (#5721)

This commit is contained in:
albertony 2021-10-15 18:51:57 +02:00 committed by GitHub
parent 7b66ca132d
commit 29b8c71522
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -33,7 +33,7 @@ def alter_doc(backend):
raise ValueError("Didn't find doc file %s" % (doc_file,))
new_file = doc_file+"~new~"
altered = False
with open(doc_file, "r") as in_file, open(new_file, "w") as out_file:
with open(doc_file, "r", encoding="utf_8") as in_file, open(new_file, "w", encoding="utf_8") as out_file:
in_docs = False
for line in in_file:
if not in_docs: