Fix await self.find() in crawler (#34)

This commit is contained in:
Vicente Dragicevic 2017-10-07 13:55:14 -03:00 committed by Brian Muller
parent b0db225b98
commit 67abd88ec2

View File

@ -141,7 +141,7 @@ class NodeSpiderCrawl(SpiderCrawl):
if self.nearest.allBeenContacted():
return list(self.nearest)
return self.find()
return await self.find()
class RPCFindResponse(object):