diff --git a/project/utils/config.py b/project/utils/config.py index 77d1aeb..88cc8f2 100644 --- a/project/utils/config.py +++ b/project/utils/config.py @@ -18,6 +18,9 @@ def get_config_data(filename): return load(config_file, Loader=Loader) except FileNotFoundError: return {} + except Exception as e: + print("Error:", e) + return {} def write_user_config(refresh_after=False):