Merge pull request #98 from TrueTechy/file-default-encoding

Add explicit file encoding to file handlers
This commit is contained in:
mcarlton00 2019-09-29 21:59:53 -04:00 committed by GitHub
commit 1670836c6a
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 3 additions and 3 deletions

View File

@ -333,7 +333,7 @@ def get_sync():
xbmcvfs.mkdirs(path)
try:
with open(os.path.join(path, 'sync.json')) as infile:
with open(os.path.join(path, 'sync.json'), encoding='utf-8') as infile:
sync = json.load(infile)
except Exception:
sync = {}
@ -354,7 +354,7 @@ def save_sync(sync):
sync['Date'] = datetime.datetime.utcnow().strftime('%Y-%m-%dT%H:%M:%SZ')
with open(os.path.join(path, 'sync.json'), 'w') as outfile:
with open(os.path.join(path, 'sync.json'), 'w', encoding='utf-8') as outfile:
data = json.dumps(sync, sort_keys=True, indent=4, ensure_ascii=False)
outfile.write(unicode(data))
@ -371,7 +371,7 @@ def get_credentials():
except Exception:
try:
with open(os.path.join(path, 'data.txt')) as infile:
with open(os.path.join(path, 'data.txt'), encoding='utf-8') as infile:
credentials = json.load(infile)
save_credentials(credentials)