txlyre 1 년 전
부모
커밋
d068c54ddc
1개의 변경된 파일3개의 추가작업 그리고 1개의 파일을 삭제
  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}```')