From 52c7389ba454fb119ca59331e5618c8d7a6b251d Mon Sep 17 00:00:00 2001 From: Storm Dragon Date: Sat, 27 Apr 2019 15:28:26 -0400 Subject: [PATCH] Fixed a bug in the presentation of the saved text. --- src/fenrirscreenreader/commands/commands/save_settings.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/fenrirscreenreader/commands/commands/save_settings.py b/src/fenrirscreenreader/commands/commands/save_settings.py index fcdfb903..c3dcda39 100644 --- a/src/fenrirscreenreader/commands/commands/save_settings.py +++ b/src/fenrirscreenreader/commands/commands/save_settings.py @@ -18,6 +18,6 @@ class command(): return 'Saves your current Fenrir settings so they are the default.' def run(self): self.env['runtime']['settingsManager'].saveSettings(settingConfigPath) - self.env['runtime']['outputManager'].presentText("Settings saved.", interrupt=True)True + self.env['runtime']['outputManager'].presentText("Settings saved.", interrupt=True) def setCallback(self, callback): pass