You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
There's a bug in your main script in line 99.
It reads answer = dns.resolver.query(domain, record_type), but should be answer = resolver.query(domain, record_type), because then it uses the resolver object defined above.
So trivial and yet so hard to see, took me hours of debugging. Please fix.
The text was updated successfully, but these errors were encountered:
There's a bug in your main script in line 99.
It reads
answer = dns.resolver.query(domain, record_type)
, but should beanswer = resolver.query(domain, record_type)
, because then it uses the resolver object defined above.So trivial and yet so hard to see, took me hours of debugging. Please fix.
The text was updated successfully, but these errors were encountered: