1
0
Fork 0

ctfs: update module reflecting site changes

This commit is contained in:
nemunaire 2017-10-11 08:03:05 +02:00
parent e0d7ef1314
commit 226ee4e34e
1 changed files with 4 additions and 6 deletions

View File

@ -25,10 +25,8 @@ def get_info_yt(msg):
for line in soup.body.find_all('tr'):
n = line.find_all('td')
if len(n) == 5:
try:
res.append_message("\x02%s:\x0F from %s type %s at %s. %s" %
tuple([striphtml(x.text) for x in n]))
except:
pass
if len(n) == 7:
res.append_message("\x02%s:\x0F from %s type %s at %s. Weight: %s. %s%s" %
tuple([striphtml(x.text).strip() for x in n]))
return res