Queer European MD passionate about IT
Explorar el Código

Exclude table header

Davte hace 5 años
padre
commit
04733552c5
Se han modificado 1 ficheros con 1 adiciones y 1 borrados
  1. 1 1
      davtelepot/api_helper.py

+ 1 - 1
davtelepot/api_helper.py

@@ -40,7 +40,7 @@ class TelegramApiMethod(object):
         result = ''
         if self.table is None:
             return "No parameters"
-        rows = self.table.find_all('tr')
+        rows = self.table.tbody.find_all('tr')
         if rows is None:
             rows = []
         for row in rows: