mirror of
https://github.com/JimmXinu/FanFicFare.git
synced 2026-05-08 12:36:11 +02:00
adapter_quotevcom: Update collection of searchtags
This commit is contained in:
parent
a1f839d732
commit
c53cbfe156
1 changed files with 1 additions and 1 deletions
|
|
@ -91,7 +91,7 @@ class QuotevComAdapter(BaseSiteAdapter):
|
|||
for a in soup.find_all('a', {'href': re.compile('/fiction(/c)?/')}):
|
||||
self.story.addToList('category', a.get_text())
|
||||
|
||||
for a in soup.find_all('a', {'href': re.compile('/search/')}):
|
||||
for a in soup.select('div#quizHeader div.quizBoxTags a'):
|
||||
self.story.addToList('searchtags', a.get_text())
|
||||
|
||||
elements = soup.find_all('time') # , {'class': 'q_time'}
|
||||
|
|
|
|||
Loading…
Reference in a new issue