From 53a82b42498507d17696872234d73979769c37af Mon Sep 17 00:00:00 2001 From: Manuel Fritsch Date: Tue, 26 Jan 2021 20:28:42 +0100 Subject: [PATCH] fix dashboard path --- cbpi/cli.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/cbpi/cli.py b/cbpi/cli.py index 2330edb..a73f5e1 100644 --- a/cbpi/cli.py +++ b/cbpi/cli.py @@ -58,8 +58,8 @@ def create_config_file(): def create_home_folder_structure(): pathlib.Path(os.path.join(".", 'logs/sensors')).mkdir(parents=True, exist_ok=True) pathlib.Path(os.path.join(".", 'config')).mkdir(parents=True, exist_ok=True) - pathlib.Path(os.path.join(".", 'config/dasboard')).mkdir(parents=True, exist_ok=True) - pathlib.Path(os.path.join(".", 'config/dasboard/widgets')).mkdir(parents=True, exist_ok=True) + pathlib.Path(os.path.join(".", 'config/dashboard')).mkdir(parents=True, exist_ok=True) + pathlib.Path(os.path.join(".", 'config/dashboard/widgets')).mkdir(parents=True, exist_ok=True) print("Folder created") def copy_splash():