Skip to content

Commit

Permalink
uncomment
Browse files Browse the repository at this point in the history
  • Loading branch information
dlenski committed Jun 9, 2020
1 parent fdf9ef2 commit 505e136
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions vpn_slice/dnspython.py
Original file line number Diff line number Diff line change
Expand Up @@ -32,8 +32,8 @@ def lookup_host(self, hostname, keep_going=True):

for rectype in self.rectypes:
try:
# print("Issuing query for hostname %r, rectype %r, source %r, search_domains %r, nameservers %r" % (
# hostname, rectype, source, self.resolver.search_domains, self.resolver.nameservers), file=stderr)
print("Issuing query for hostname %r, rectype %r, source %r, search_domains %r, nameservers %r" % (
hostname, rectype, source, self.resolver.search_domains, self.resolver.nameservers), file=stderr)
a = self.resolver.query(hostname, rectype, source=str(source))
print("Got results: %r" % list(a), file=stderr)
except (NXDOMAIN, NoAnswer):
Expand Down

0 comments on commit 505e136

Please sign in to comment.