From: Oleg Broytman Date: Tue, 14 Nov 2023 17:56:26 +0000 (+0300) Subject: Feat: Open log files in UTF-8 encoding X-Git-Tag: 5.0.0~32 X-Git-Url: https://git.phdru.name/?p=bookmarks_db.git;a=commitdiff_plain;h=ac86c51f608426450dfecc62163a52c9879d49ca Feat: Open log files in UTF-8 encoding --- diff --git a/check_redirects.py b/check_redirects.py index 1f5c2b0..c9161d9 100755 --- a/check_redirects.py +++ b/check_redirects.py @@ -48,7 +48,7 @@ def run(): sys.exit(1) if log_filename: - log_file = open(log_filename, 'wt') + log_file = open(log_filename, 'wt', encoding='utf-8') from storage import storage storage = storage() diff --git a/check_title.py b/check_title.py index c30e025..391f5a1 100755 --- a/check_title.py +++ b/check_title.py @@ -52,7 +52,7 @@ def run(): sys.exit(1) if log_filename: - log_file = open(log_filename, 'wt') + log_file = open(log_filename, 'wt', encoding='utf-8') from storage import storage storage = storage() @@ -81,7 +81,7 @@ def run(): unquoted_title = unquote_title(quote_title(object.real_title)) unquoted_name = unquote_title(object.name) if unquoted_name != unquoted_title: - report_title(object.href, unquoted_name unquoted_title) + report_title(object.href, unquoted_name, unquoted_title) else: report_title(object.href, object.name, None)