txlyre 1 gadu atpakaļ
vecāks
revīzija
48b6ce9edf
1 mainītis faili ar 1 papildinājumiem un 1 dzēšanām
  1. 1 1
      commands.py

+ 1 - 1
commands.py

@@ -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('`', '')