1
0
Fork 0
mirror of https://github.com/kemayo/leech synced 2025-12-06 16:33:16 +01:00

Make xenforo title select pickier

This commit is contained in:
David Lynch 2017-03-17 22:39:56 -05:00
parent 40042cdb46
commit 0230993cb4

View file

@ -31,7 +31,7 @@ class XenForo(Site):
base = soup.head.base.get('href')
story = Section(
title=soup.find('h1').get_text(),
title=soup.select('div.titleBar > h1')[0].get_text(),
author=soup.find('p', id='pageDescription').find('a', class_='username').get_text()
)