mirror of
https://github.com/adulau/crl-monitor.git
synced 2024-11-21 17:47:09 +00:00
fix: [netaddr] fix the IP lookup
This commit is contained in:
parent
64a77a9677
commit
d24e10053f
1 changed files with 1 additions and 1 deletions
|
@ -80,7 +80,7 @@ class SSLQueryHandler(tornado.web.RequestHandler):
|
|||
if not self._finished:
|
||||
self.finish()
|
||||
for ip in iplist:
|
||||
s = r.smembers(ip)
|
||||
s = r.smembers(str(ip))
|
||||
if s:
|
||||
out[str(ip)] = {}
|
||||
out[str(ip)]['certificates'] = []
|
||||
|
|
Loading…
Reference in a new issue