From 710b670c32e90bbe3b7c60c084d7a36fe9b62b62 Mon Sep 17 00:00:00 2001 From: BaerbelBox Date: Sun, 24 Jul 2022 09:07:35 +0200 Subject: [PATCH] Minor correction of an excess backspace --- FaustBot/Model/Config.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/FaustBot/Model/Config.py b/FaustBot/Model/Config.py index 0ade699..481abf1 100644 --- a/FaustBot/Model/Config.py +++ b/FaustBot/Model/Config.py @@ -45,7 +45,7 @@ class Config(object): for module in blacklist: self._config_dict['blacklist'].append(module.strip()) if 'greeting' not in self._config_dict: - self._config_dict['greeting'] = "Hallo " + self._config_dict['greeting'] = "Hallo" @property def lang(self): return self._config_dict["lang"]