diff options
author | morpheus65535 <[email protected]> | 2023-10-16 06:32:56 -0400 |
---|---|---|
committer | morpheus65535 <[email protected]> | 2023-10-16 06:32:56 -0400 |
commit | 85c65ecb5a33497d1a152bbf46412afa2838e211 (patch) | |
tree | baf1dd72805cbf3cd2f3d57cb40966ede8ee3eb2 | |
parent | 2a8a4030b9e032392f172e73679ba47bdb060b77 (diff) | |
download | bazarr-85c65ecb5a33497d1a152bbf46412afa2838e211.tar.gz bazarr-85c65ecb5a33497d1a152bbf46412afa2838e211.zip |
Fixed config.ini conversion by disabling interpolation with ConfigParser that failed with addic7ed cookie.v1.3.2-beta.2
-rw-r--r-- | bazarr/app/config.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/bazarr/app/config.py b/bazarr/app/config.py index f6244179b..7fd566433 100644 --- a/bazarr/app/config.py +++ b/bazarr/app/config.py @@ -331,7 +331,7 @@ validators = [ def convert_ini_to_yaml(config_file): import configparser import yaml - config_object = configparser.ConfigParser() + config_object = configparser.RawConfigParser() file = open(config_file, "r") config_object.read_file(file) output_dict = dict() |