mirror of
https://github.com/laramies/theHarvester.git
synced 2025-02-25 23:13:24 +08:00
Missing period.
This commit is contained in:
parent
7fef0cb0ca
commit
5bc000296d
1 changed files with 1 additions and 1 deletions
|
@ -51,7 +51,7 @@ def crawl(self, text):
|
|||
if isinstance(val, int) or isinstance(val, dict) or val is None:
|
||||
continue
|
||||
if isinstance(val, list):
|
||||
if len(val) == 0: # Make sure not indexing an empty list
|
||||
if len(val) == 0: # Make sure not indexing an empty list.
|
||||
continue
|
||||
val = val[0] # First value should be dict.
|
||||
if isinstance(val, dict): # Sanity check.
|
||||
|
|
Loading…
Reference in a new issue