explicity encoding only for Python 3
This commit is contained in:
parent
bfa06cead1
commit
8d4db0282f
1 changed files with 7 additions and 2 deletions
|
@ -6,6 +6,7 @@ import os
|
|||
import glob
|
||||
import copy
|
||||
import json
|
||||
import sys
|
||||
|
||||
import bumblebee.error
|
||||
|
||||
|
@ -109,7 +110,11 @@ class Theme(object):
|
|||
|
||||
if os.path.isfile(themefile):
|
||||
try:
|
||||
with open(themefile, encoding="utf-8") as data:
|
||||
if(sys.version_info > (3,0)):
|
||||
with open(themefile,encoding="utf-8") as data:
|
||||
return json.load(data)
|
||||
else:
|
||||
with open(themefile) as data:
|
||||
return json.load(data)
|
||||
except ValueError as exception:
|
||||
raise bumblebee.error.ThemeLoadError("JSON error: {}".format(exception))
|
||||
|
|
Loading…
Reference in a new issue