diff options
Diffstat (limited to 'ishtar_common/context_processors.py')
-rw-r--r-- | ishtar_common/context_processors.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ishtar_common/context_processors.py b/ishtar_common/context_processors.py index d1e088a8f..74e38efc4 100644 --- a/ishtar_common/context_processors.py +++ b/ishtar_common/context_processors.py @@ -53,7 +53,7 @@ def _get_changelog_version_from_file(): return "no-version" changelog_file = os.path.join(changelog_dir, filename) current_version = None - with open(changelog_file, "r") as changelog: + with open(changelog_file, "r", encoding="utf-8") as changelog: for line in changelog.readlines(): m = re.match(r"v(\d+)\.(\d+)\.(\d+)", line) if not m: |