From 9eeede4af158251593840cdab12b9354b05cd037 Mon Sep 17 00:00:00 2001 From: meisnate12 Date: Fri, 2 Feb 2024 11:35:28 -0500 Subject: [PATCH] [25] fix for #1864 --- VERSION | 2 +- modules/config.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/VERSION b/VERSION index 4a449753..95e3813d 100644 --- a/VERSION +++ b/VERSION @@ -1 +1 @@ -1.20.0-develop24 +1.20.0-develop25 diff --git a/modules/config.py b/modules/config.py index a11edb28..fa3cedac 100644 --- a/modules/config.py +++ b/modules/config.py @@ -918,7 +918,7 @@ class ConfigFile: default_path = os.path.join(default_dir, f"{str(library_name)}_Metadata_Backup.yml") if "path" not in input_dict: logger.warning(f"Config Warning: path attribute not found using default: {default_path}") - if "path" in input_dict and not input_dict["path"]: + elif "path" in input_dict and not input_dict["path"]: logger.warning(f"Config Warning: path attribute blank using default: {default_path}") else: default_path = input_dict["path"]