Skip to content

Commit

Permalink
Remove debug printf
Browse files Browse the repository at this point in the history
  • Loading branch information
huitema committed Sep 15, 2023
1 parent 644302a commit 4aea7e9
Showing 1 changed file with 0 additions and 1 deletion.
1 change: 0 additions & 1 deletion travis/check-dnsstats-tables.py
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,6 @@ def canonical_ipaddress(addr):
try:
root_hints = urlopen("https://www.internic.net/domain/named.root") \
.read().decode('utf-8')
print("Got root hints, " + str(len(root_hints)) + " chars.");
root_hints = set([ln.split()[-1] for ln in root_hints.split('\n')
if len(ln) > 0 and ln[0].isalpha()])
root_hints = set(canonical_ipaddress(ip) for ip in root_hints)
Expand Down

0 comments on commit 4aea7e9

Please sign in to comment.