From 85c65ecb5a33497d1a152bbf46412afa2838e211 Mon Sep 17 00:00:00 2001 From: morpheus65535 Date: Mon, 16 Oct 2023 06:32:56 -0400 Subject: [PATCH] Fixed config.ini conversion by disabling interpolation with ConfigParser that failed with addic7ed cookie. --- bazarr/app/config.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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()