diff options
author | Brian Solon <solon@users.noreply.github.com> | 2019-10-03 14:50:08 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-10-03 14:50:08 -0400 |
commit | 0b1dcd32bfc4b898d729d08ba465028515797ddd (patch) | |
tree | e7665b1f920fc267b0cb47cb959d8ea6b1991d7c /contrib/seeds/makeseeds.py | |
parent | 284cd3195a9ea2e1e8d3663f5e7baa69c3727464 (diff) |
contrib: fix minor typos in makeseeds.py
See #17020
Diffstat (limited to 'contrib/seeds/makeseeds.py')
-rwxr-xr-x | contrib/seeds/makeseeds.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/contrib/seeds/makeseeds.py b/contrib/seeds/makeseeds.py index 2f7697e0b1..ec589d4c02 100755 --- a/contrib/seeds/makeseeds.py +++ b/contrib/seeds/makeseeds.py @@ -123,7 +123,7 @@ def filtermultiport(ips): def lookup_asn(net, ip): ''' - Look up the asn for an IP (4 or 6) address by querying cymry.com, or None + Look up the asn for an IP (4 or 6) address by querying cymru.com, or None if it could not be found. ''' try: @@ -187,7 +187,7 @@ def main(): # Skip entries with invalid address. ips = [ip for ip in ips if ip is not None] print('%s Skip entries with invalid address' % (ip_stats(ips)), file=sys.stderr) - # Skip duplicattes (in case multiple seeds files were concatenated) + # Skip duplicates (in case multiple seeds files were concatenated) ips = dedup(ips) print('%s After removing duplicates' % (ip_stats(ips)), file=sys.stderr) # Skip entries from suspicious hosts. |