From 204442d370ebbf4cc0c750db8967cdcd72f0c98a Mon Sep 17 00:00:00 2001 From: Min RK Date: Wed, 29 Aug 2018 16:02:41 +0200 Subject: [PATCH] fix config.yaml path in jupyterhub_config.py --- tljh/jupyterhub_config.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tljh/jupyterhub_config.py b/tljh/jupyterhub_config.py index 994e506..97c76ce 100644 --- a/tljh/jupyterhub_config.py +++ b/tljh/jupyterhub_config.py @@ -40,7 +40,7 @@ c.SystemdSpawner.default_shell = '/bin/bash' # Drop the '-singleuser' suffix present in the default template c.SystemdSpawner.unit_name_template = 'jupyter-{USERNAME}' -config_overrides_path = os.path.join(INSTALL_PREFIX, 'config.yaml') +config_overrides_path = os.path.join(CONFIG_DIR, 'config.yaml') if os.path.exists(config_overrides_path): with open(config_overrides_path) as f: config_overrides = yaml.safe_load(f)