From b0abc9e0826d3dbec454980a03466b2dce48da9f Mon Sep 17 00:00:00 2001 From: Hayden Date: Sun, 3 Jan 2021 14:53:16 -0900 Subject: [PATCH] no folder crash error --- mealie/startup.py | 1 + 1 file changed, 1 insertion(+) diff --git a/mealie/startup.py b/mealie/startup.py index b12b029afcf0..70c2b3545ab3 100644 --- a/mealie/startup.py +++ b/mealie/startup.py @@ -13,6 +13,7 @@ def ensure_dirs(): DATA_DIR.joinpath("img").mkdir(parents=True, exist_ok=True) DATA_DIR.joinpath("backups").mkdir(parents=True, exist_ok=True) DATA_DIR.joinpath("templates").mkdir(parents=True, exist_ok=True) + DATA_DIR.joinpath("debug").mkdir(parents=True, exist_ok=True) def generate_default_theme():