From 4fb117f3489f16adbfbf0f28bd29ca1ee18d3908 Mon Sep 17 00:00:00 2001 From: NotoriousRebel Date: Mon, 31 Dec 2018 12:20:08 -0500 Subject: [PATCH] Updated filter. --- discovery/constants.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/discovery/constants.py b/discovery/constants.py index a7478fd9..5778a33e 100644 --- a/discovery/constants.py +++ b/discovery/constants.py @@ -263,6 +263,8 @@ def filter(lst): new_lst = [] for item in lst: if (item[0].isalpha() or item[0].isdigit()) and ('xxx' not in item) and ('..' not in item): + if '252f' in item: + item = item.replace('252f', '') new_lst.append(item.lower()) return new_lst