From edfbbd8ae9cb5a4a0383af5c1c731c367ff58754 Mon Sep 17 00:00:00 2001 From: yuvipanda Date: Wed, 1 Aug 2018 02:47:44 -0700 Subject: [PATCH] Use jupyterhub_config.d rather than config.d for overrides Makes it clearer that these are jupyterhub_config.py snippets rather than config.yaml snippets --- 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 21976e9..4abb891 100644 --- a/tljh/jupyterhub_config.py +++ b/tljh/jupyterhub_config.py @@ -50,6 +50,6 @@ configurer.apply_config(config_overrides, c) # Load arbitrary .py config files if they exist. # This is our escape hatch -extra_configs = sorted(glob(os.path.join(INSTALL_PREFIX, 'config.d', '*.py'))) +extra_configs = sorted(glob(os.path.join(INSTALL_PREFIX, 'jupyterhub_config.d', '*.py'))) for ec in extra_configs: load_subconfig(ec)