diff --git a/cbpi/configFolder.py b/cbpi/configFolder.py index fc21aa5..88ee8b8 100644 --- a/cbpi/configFolder.py +++ b/cbpi/configFolder.py @@ -97,7 +97,6 @@ class ConfigFolder: ['dashboard/widgets', 'folder'], ['dashboard', 'folder'], ['fermenterrecipes', 'folder'], - ['../logs', 'folder'], ['recipes', 'folder'], ['upload', 'folder'] ] @@ -174,7 +173,6 @@ class ConfigFolder: def create_folders(self): pathlib.Path(self.configFolderPath).mkdir(parents=True, exist_ok=True) pathlib.Path(os.path.join(self.configFolderPath, 'dashboard', 'widgets')).mkdir(parents=True, exist_ok=True) - #pathlib.Path(os.path.join(self.configFolderPath, '..','logs')).mkdir(parents=True, exist_ok=True) pathlib.Path(os.path.join(self.configFolderPath, 'recipes')).mkdir(parents=True, exist_ok=True) pathlib.Path(os.path.join(self.configFolderPath, 'fermenterrecipes')).mkdir(parents=True, exist_ok=True) pathlib.Path(os.path.join(self.configFolderPath, 'upload')).mkdir(parents=True, exist_ok=True)