diff options
Diffstat (limited to 'ishtar_common/views.py')
-rw-r--r-- | ishtar_common/views.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ishtar_common/views.py b/ishtar_common/views.py index a49dc7aee..ba205abf3 100644 --- a/ishtar_common/views.py +++ b/ishtar_common/views.py @@ -1191,7 +1191,7 @@ class ChangelogView(IshtarMixin, LoginRequiredMixin, TemplateView): if not current_file: raise Http404() changelog_file = os.path.join(changelog_dir, current_file) - with open(changelog_file, "r") as changelog: + with open(changelog_file, "r", encoding="utf-8") as changelog: context["changelog"] = markdown(changelog.read()) if page_number > 1: context["next"] = page_number - 1 |