|
@@ -448,7 +448,7 @@ async def run_handler(bot, event, command):
|
|
|
return
|
|
|
|
|
|
text = remove_ansi_escapes(text).strip()
|
|
|
- text = filter(lambda c: c in ' \t\n' or ord(c) >= 32, text)
|
|
|
+ text = filter(lambda c: (c in ' \t\n' or ord(c) >= 32) and ord(c) not in range(128, 159), text)
|
|
|
text = ''.join(text)
|
|
|
text = text.replace('`', '')
|
|
|
|