From 9243414cdb0d28332eec6afbedef76b990e35dc7 Mon Sep 17 00:00:00 2001 From: David Gay Date: Mon, 29 Jan 2024 02:18:02 -0500 Subject: Better comment --- subsync.py | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) (limited to 'subsync.py') diff --git a/subsync.py b/subsync.py index 23343a6..df45c5f 100644 --- a/subsync.py +++ b/subsync.py @@ -19,8 +19,9 @@ os.chdir(os.path.dirname(os.path.realpath(__file__))) class mopen: def __init__(self, filename, mode='r'): - # TODO: Attempt checking encoding, and only fall back to utf-8 if it fails. - # self.real_encoding = chardet.detect(open(filename, 'rb').read())['encoding'].lower() + # TODO: Next time I run this script, add a try/except that falls back to utf-8 if the detection fails. + # file_detect = chardet.detect(open(filename, 'rb').read()) + # self.real_encoding = file_detect['encoding'].lower() self.file_o = open(filename, mode, encoding="utf-8") def __getattr__(self, name): -- cgit v1.2.3