Exclude table header

This commit is contained in:
Davte 2019-06-30 18:05:08 +02:00
parent afaf686827
commit 04733552c5

View File

@ -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: