Queer European MD passionate about IT
Browse Source

Exclude table header

Davte 5 năm trước cách đây
mục cha
commit
04733552c5
1 tập tin đã thay đổi với 1 bổ sung1 xóa
  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: