Fixed small bug.

This commit is contained in:
NotoriousRebel 2019-12-24 00:06:34 -05:00
parent 3bd1b8e12e
commit 84665c2e59

View file

@ -23,7 +23,7 @@ async def do_search(self) -> None:
elif isinstance(response, dict):
self.totalhosts.update({response['dns_names'] if 'dns_names' in response.keys() else ''})
else:
self.totalhosts.union('')
self.totalhosts.update({''})
except Exception as e:
print(e)