fix for change of func name:

dns.resolver.resolve > dns.resolve.query
This commit is contained in:
brent s 2020-11-21 13:34:37 -05:00
parent 916ea1dc2c
commit 4fa98eb805
Signed by: bts
GPG Key ID: 8C004C2F93481F6B
2 changed files with 1 additions and 1 deletions

View File

@ -117,7 +117,7 @@ class Updater(object):
for t in ('A', 'AAAA'):
logger.debug('Resolving {0} ({1})'.format(record, t))
try:
q = self.resolver.resolve(record, t)
q = self.resolver.query(record, t)
for a in q:
if t not in records.keys():
records[t] = []

0
sys/find_dupes.py Normal file
View File