diff options
| author | Daniel Mensinger <daniel@mensinger-ka.de> | 2021-06-22 22:59:16 +0200 |
|---|---|---|
| committer | Daniel Mensinger <daniel@mensinger-ka.de> | 2021-06-29 11:28:08 +0200 |
| commit | 3e396b3782813d36d46195564cd0e111422bcaf5 (patch) | |
| tree | f315e990f71984745fcb8f22dac2f0e400fecadb /mesonbuild/scripts/gettext.py | |
| parent | 28175bbee2c111cf41b80c97bbadd7dbabaa8990 (diff) | |
| download | meson-3e396b3782813d36d46195564cd0e111422bcaf5.tar.gz | |
fix: Always explicitly set encoding for text files (fixes #8263)
Diffstat (limited to 'mesonbuild/scripts/gettext.py')
| -rw-r--r-- | mesonbuild/scripts/gettext.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/mesonbuild/scripts/gettext.py b/mesonbuild/scripts/gettext.py index 92b55d3e4..b1ce6af1c 100644 --- a/mesonbuild/scripts/gettext.py +++ b/mesonbuild/scripts/gettext.py @@ -34,7 +34,7 @@ def read_linguas(src_sub: str) -> T.List[str]: linguas = os.path.join(src_sub, 'LINGUAS') try: langs = [] - with open(linguas) as f: + with open(linguas, encoding='utf-8') as f: for line in f: line = line.strip() if line and not line.startswith('#'): |
