Commit 0481fddb authored by Guillaume Pasero's avatar Guillaume Pasero
Browse files

COMP: fix Python utf-8 error

No related merge requests found
Showing with 1 addition and 1 deletion
+1 -1
...@@ -426,7 +426,7 @@ def GenerateRstForApplications(rst_dir): ...@@ -426,7 +426,7 @@ def GenerateRstForApplications(rst_dir):
tagFile.write("\tapp_" + appName + "\n") tagFile.write("\tapp_" + appName + "\n")
# Write application rst # Write application rst
with open(rst_dir + '/Applications/app_' + appName + '.rst', 'w') as appFile: with open(rst_dir + '/Applications/app_' + appName + '.rst', 'w',encoding='utf-8') as appFile:
appFile.write(render_application(appName, appNames)) appFile.write(render_application(appName, appNames))
if __name__ == "__main__": if __name__ == "__main__":
......
Supports Markdown
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment