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 7740baa..23343a6 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'):
- self.real_encoding = chardet.detect(open(filename, 'rb').read())['encoding'].lower()
- self.file_o = open(filename, mode, encoding=self.real_encoding)
+ # 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()
+ self.file_o = open(filename, mode, encoding="utf-8")
def __getattr__(self, name):
return getattr(self.file_o, name)