From e332053380274399a5ab3c6b19f176c07437b926 Mon Sep 17 00:00:00 2001 From: Joscha Date: Mon, 23 May 2016 16:23:39 +0200 Subject: [PATCH] Fix message mentionable formatting --- yaboli/message.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/yaboli/message.py b/yaboli/message.py index 7cca765..dc96e58 100644 --- a/yaboli/message.py +++ b/yaboli/message.py @@ -78,7 +78,7 @@ class Message(): Converts the name to a mentionable format. """ - return "".join(c for c in self.name if not c in ",.!?;&<'\"" and not c.isspace()).lower() + return self.sender.mentionable() def is_edited(self): """