From f13e0a8d58fa6efa3eeb534500e949c49bd4ae05 Mon Sep 17 00:00:00 2001 From: John Bodley <4567245+john-bodley@users.noreply.github.com> Date: Mon, 1 Apr 2019 09:50:20 -0700 Subject: [PATCH] Update __init__.py (#7166) --- superset/__init__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/superset/__init__.py b/superset/__init__.py index 5e77328d662..69ad1f54d14 100644 --- a/superset/__init__.py +++ b/superset/__init__.py @@ -45,7 +45,7 @@ CONFIG_MODULE = os.environ.get('SUPERSET_CONFIG', 'superset.config') if not os.path.exists(config.DATA_DIR): os.makedirs(config.DATA_DIR) -with open(APP_DIR + '/static/assets/backendSync.json', 'r') as f: +with open(APP_DIR + '/static/assets/backendSync.json', 'r', encoding='utf-8') as f: frontend_config = json.load(f) app = Flask(__name__)