From c53cbfe156779ffe75213c56ec5f995a9ad240d7 Mon Sep 17 00:00:00 2001 From: Jim Miller Date: Sun, 22 May 2022 10:25:56 -0500 Subject: [PATCH] adapter_quotevcom: Update collection of searchtags --- fanficfare/adapters/adapter_quotevcom.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/fanficfare/adapters/adapter_quotevcom.py b/fanficfare/adapters/adapter_quotevcom.py index 16a3e80a..0f2d2a6d 100644 --- a/fanficfare/adapters/adapter_quotevcom.py +++ b/fanficfare/adapters/adapter_quotevcom.py @@ -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'}