From e8b6cda1ae16fc55f85b2cd96deec77dac2b3b53 Mon Sep 17 00:00:00 2001 From: Jason Grout Date: Tue, 27 Sep 2022 02:14:57 -0600 Subject: [PATCH] Fix system config directory --- jupyter_core/paths.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/jupyter_core/paths.py b/jupyter_core/paths.py index 4789118..131838c 100644 --- a/jupyter_core/paths.py +++ b/jupyter_core/paths.py @@ -252,7 +252,7 @@ def jupyter_path(*subdirs): if use_platform_dirs(): - SYSTEM_CONFIG_PATH = platformdirs.site_config_dir("Jupyter", False) + SYSTEM_CONFIG_PATH = [platformdirs.site_config_dir("Jupyter", False)] else: if os.name == "nt": programdata = os.environ.get("PROGRAMDATA", None)