Update discovery/huntersearch.py

This commit is contained in:
Laramies 2018-11-15 00:05:19 +01:00
parent a2c97e9fc4
commit d26ce55733

View file

@ -16,7 +16,7 @@ def __init__(self, word, limit, start):
self.results = ""
self.totalresults = ""
self.counter = start
self.database = "https://api.hunter.io/v2/domain-search?domain=" + word + "&api_key=" + self.key +"&limit="+self.limit
self.database = "https://api.hunter.io/v2/domain-search?domain=" + word + "&api_key=" + self.key +"&limit=" + str(self.limit)
def do_search(self):
try: