From 8e41b2ffe5a1d211173dd7172feb26823280c34b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?tr=C3=A9meur?= Date: Mon, 1 Aug 2022 20:02:20 +0100 Subject: [PATCH] Add another exception for FFA --- promptscrape.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/promptscrape.py b/promptscrape.py index 2a2e3ae..5fbbd48 100644 --- a/promptscrape.py +++ b/promptscrape.py @@ -152,7 +152,7 @@ while i < 8: ffatheprompt = ffaresoup.find_all("h4",text=True) for each in ffatheprompt: if "100 words of" in (str(each.get_text())) or "100 Words of" in (str(each.get_text())) or "100 Words Of" in (str(each.get_text())): - if "Re:" not in (str(each.get_text())) and "catch-up" not in (str(each.get_text())): + if "Re:" not in (str(each.get_text())) and "catch-up" not in (str(each.get_text())) and "Catch-Up" not in (str(each.get_text())): ffacent.append(str(each.get_text())) i += 1 if ffacent: