summaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
-rw-r--r--bazarr/app/config.py2
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()