Skip to content

Commit ab704cc

Browse files
committed
bug fixed
bug fixed
1 parent 01f09e3 commit ab704cc

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

EmailHarvester.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -250,7 +250,9 @@ def limit_type(x):
250250
plugins = app.get_plugins()
251251

252252
all_emails = []
253-
excluded = args.exclude.split(',')
253+
excluded = []
254+
if args.exclude:
255+
excluded = args.exclude.split(',')
254256
if engine == "all":
255257
print(green("[+] Searching everywhere.."))
256258
for search_engine in plugins:

0 commit comments

Comments
 (0)