From 62cf5ecb37b4680b79e2549769268d548ef068af Mon Sep 17 00:00:00 2001 From: Ilya Zverev Date: Wed, 18 Oct 2017 17:40:06 +0300 Subject: [PATCH] Fix encoding in validation html --- validation_to_html.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/validation_to_html.py b/validation_to_html.py index 410b2ee..2b3d656 100755 --- a/validation_to_html.py +++ b/validation_to_html.py @@ -112,7 +112,7 @@ for c in data.values(): date = datetime.datetime.now().strftime('%d.%m.%Y %H:%M') path = '.' if len(sys.argv) < 3 else sys.argv[2] -index = open(os.path.join(path, 'index.html'), 'w') +index = open(os.path.join(path, 'index.html'), 'w', encoding='utf-8') index.write(tmpl(INDEX_HEADER)) for continent in sorted(continents.keys()): @@ -121,7 +121,7 @@ for continent in sorted(continents.keys()): country_file_name = country.lower().replace(' ', '-') + '.html' content += tmpl(INDEX_COUNTRY, countries[country], file=country_file_name, country=country, continent=continent) - country_file = open(os.path.join(path, country_file_name), 'w') + country_file = open(os.path.join(path, country_file_name), 'w', encoding='utf-8') country_file.write(tmpl(COUNTRY_HEADER, country=country, continent=continent)) for name, city in sorted(data.items()): if city.country == country: