From b8b1d4067f97b0596b546368772b72336c84ba54 Mon Sep 17 00:00:00 2001 From: Vincent Koc Date: Mon, 9 Oct 2023 00:12:31 +1100 Subject: [PATCH] fix: Update appsdb.py #1948 --- mackup/appsdb.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mackup/appsdb.py b/mackup/appsdb.py index 638ff40f4..3699cb1f0 100644 --- a/mackup/appsdb.py +++ b/mackup/appsdb.py @@ -26,7 +26,7 @@ def __init__(self): self.apps = dict() for config_file in ApplicationsDatabase.get_config_files(): - config = configparser.SafeConfigParser(allow_no_value=True) + config = configparser.ConfigParser(allow_no_value=True) # Needed to not lowercase the configuration_files in the ini files config.optionxform = str