Compare commits

...

2 Commits

Author SHA1 Message Date
Storm Dragon
9da925c80d Fixed merge conflict. 2024-12-21 17:52:38 -05:00
Storm Dragon
9c45ca1b5f Fixed bug in Fenrir configuration tool. 2024-12-21 17:46:23 -05:00

View File

@ -201,7 +201,7 @@ class FenrirConfigTool:
# Test voice configuration
if self.test_voice(moduleChoice, voice):
config = configparser.ConfigParser()
config = configparser.ConfigParser(interpolation=None)
config.read(self.settingsFile)
if 'speech' not in config:
@ -244,7 +244,7 @@ class FenrirConfigTool:
def edit_general_config(self) -> None:
while True:
config = configparser.ConfigParser()
config = configparser.ConfigParser(interpolation=None)
config.read(self.settingsFile)
sections = config.sections()