txlyre 11 mēneši atpakaļ
vecāks
revīzija
f3c7283c42
1 mainītis faili ar 4 papildinājumiem un 2 dzēšanām
  1. 4 2
      commands.py

+ 4 - 2
commands.py

@@ -419,8 +419,7 @@ async def run_handler(bot, event, command):
         ) as resp:
           text = await resp.read()
           text = text.decode('UTF-8')
-          if text[:3] == '```' and text[-3:] == '```':
-            text = text[3:-3]
+
           await event.reply(f'Доступные языки:\n`{text}`')
       except:
         await event.reply('Произошла ошибка при попытке обращения к API… :(')
@@ -435,6 +434,9 @@ async def run_handler(bot, event, command):
 
   language_name, text = match.groups()
 
+  if text.startswith('```') and text.endswith('```'):
+    text = text[3:-3]
+
   text = text.replace('\xA0', ' ') # i hate telegram
 
   async with ClientSession() as session: