mirror of
https://github.com/laramies/theHarvester.git
synced 2024-11-11 18:03:10 +08:00
pep8 fix for exalead
This commit is contained in:
parent
3dde69f5b8
commit
a2f391ecb5
2 changed files with 2 additions and 2 deletions
|
@ -225,7 +225,7 @@ def start():
|
|||
elif engineitem == 'exalead':
|
||||
print('\033[94m[*] Searching Exalead \033[0m')
|
||||
from theHarvester.discovery import exaleadsearch
|
||||
search = exaleadsearch.search_exalead(word, limit, start)
|
||||
search = exaleadsearch.SearchExalead(word, limit, start)
|
||||
search.process()
|
||||
emails = filter(search.get_emails())
|
||||
all_emails.extend(emails)
|
||||
|
|
|
@ -7,7 +7,7 @@
|
|||
import requests
|
||||
|
||||
|
||||
class search_exalead:
|
||||
class SearchExalead:
|
||||
|
||||
def __init__(self, word, limit, start):
|
||||
self.word = word
|
||||
|
|
Loading…
Reference in a new issue