There was an error while loading. Please reload this page.
1 parent fbda06f commit 3eb311eCopy full SHA for 3eb311e
webpack_loader/loader.py
@@ -22,7 +22,7 @@ def __init__(self, name='DEFAULT'):
22
23
def _load_assets(self):
24
try:
25
- with open(self.config['STATS_FILE']) as f:
+ with open(self.config['STATS_FILE'], encoding="utf-8") as f:
26
return json.load(f)
27
except IOError:
28
raise IOError(
0 commit comments