Removed improper filtering of trello urls.

This commit is contained in:
NotoriousRebel 2018-12-30 12:41:21 -05:00
parent 2391da0777
commit 9cb517b676

View file

@ -387,7 +387,7 @@ def start(argv):
all_emails.extend(emails)
info = search.get_urls()
hosts = filter(info[0])
trello_info = (filter(info[1]), True)
trello_info = (info[1], True)
all_hosts.extend(hosts)
db = stash.stash_manager()
db.store_all(word, hosts, 'host', 'trello')
@ -570,7 +570,7 @@ def start(argv):
all_emails.extend(emails)
info = search.get_urls()
hosts = filter(info[0])
trello_info = (filter(info[1]), True)
trello_info = (info[1], True)
all_hosts.extend(hosts)
db = stash.stash_manager()
db.store_all(word, hosts, 'host', 'trello')