txlyre 1 yıl önce
ebeveyn
işleme
d068c54ddc
1 değiştirilmiş dosya ile 3 ekleme ve 1 silme
  1. 3 1
      commands.py

+ 3 - 1
commands.py

@@ -426,7 +426,9 @@ async def run_handler(bot, event, command):
 
       return
 
-  text = remove_ansi_escapes(text)
+  text = remove_ansi_escapes(text).strip()
+  if not text:
+    text = '<empty>'
 
   await event.reply(f'```\n{text}```')