summaryrefslogtreecommitdiff
path: root/subsync.py
diff options
context:
space:
mode:
Diffstat (limited to 'subsync.py')
-rw-r--r--subsync.py5
1 files changed, 3 insertions, 2 deletions
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):