From a1767d85d63ceded18dd8b5699e1ec5927e13034 Mon Sep 17 00:00:00 2001 From: Thorsten S Date: Sat, 7 Mar 2020 01:12:58 +0100 Subject: [PATCH] =?utf8?q?fr=C3=BChst=C3=BCcksfix?= MIME-Version: 1.0 Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit --- distbot/bot/bot.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/distbot/bot/bot.py b/distbot/bot/bot.py index 72c9511..0bd6094 100644 --- a/distbot/bot/bot.py +++ b/distbot/bot/bot.py @@ -124,7 +124,7 @@ class Bot(sleekxmpp.ClientXMPP): self.echo("Worker One available for master.") # simplify the key significantly - key = shlex.split(re.sub(r'[^a-z0-9 "\']', '', msg["body"].lower())) + key = shlex.split(re.sub(r'[^a-zäöüß0-9 "\']', '', msg["body"].lower())) if not key: # simple dots, smilies, emoji shit, pass through key = shlex.split(msg["body"].lower()) -- 2.39.2