Skip to content

Commit

Permalink
Fixed config.ini conversion by disabling interpolation with ConfigPar…
Browse files Browse the repository at this point in the history
…ser that failed with addic7ed cookie.
  • Loading branch information
morpheus65535 committed Oct 16, 2023
1 parent 2a8a403 commit 85c65ec
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion bazarr/app/config.py
Original file line number Diff line number Diff line change
Expand Up @@ -331,7 +331,7 @@ class Validator(OriginalValidator):
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()
Expand Down

0 comments on commit 85c65ec

Please sign in to comment.