1
0
mirror of https://github.com/mail-in-a-box/mailinabox.git synced 2025-10-01 14:00:55 +00:00
This commit is contained in:
Teddy Rodrigues Valette 2023-12-22 09:52:07 -08:00 committed by GitHub
commit bdd20106eb
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -36,7 +36,7 @@ except OSError:
# for generating CSRs we need a list of country codes
csr_country_codes = []
with open(os.path.join(os.path.dirname(me), "csr_country_codes.tsv")) as f:
with open(os.path.join(os.path.dirname(me), "csr_country_codes.tsv"), encoding="utf-8") as f:
for line in f:
if line.strip() == "" or line.startswith("#"): continue
code, name = line.strip().split("\t")[0:2]