Skip to content

Commit f1f284a

Browse files
author
MarcoFalke
committed
Merge #17042: contrib: fix minor typos in makeseeds.py
0b1dcd3 contrib: fix minor typos in makeseeds.py (Brian Solon) Pull request description: Fixes minor typos referenced in #17020 ACKs for top commit: laanwj: Thanks. ACK 0b1dcd3 practicalswift: ACK 0b1dcd3 Tree-SHA512: 1b67358790b3e80e9229d42e399d9ddb21e9f9a0989e05fa6851925ef76289d123cbf648944ff2b60e1513c755023ddec3a0dd3b9ad26d3e105d1d88c937f968
2 parents c90ce0f + 0b1dcd3 commit f1f284a

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

contrib/seeds/makeseeds.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -123,7 +123,7 @@ def filtermultiport(ips):
123123

124124
def lookup_asn(net, ip):
125125
'''
126-
Look up the asn for an IP (4 or 6) address by querying cymry.com, or None
126+
Look up the asn for an IP (4 or 6) address by querying cymru.com, or None
127127
if it could not be found.
128128
'''
129129
try:
@@ -187,7 +187,7 @@ def main():
187187
# Skip entries with invalid address.
188188
ips = [ip for ip in ips if ip is not None]
189189
print('%s Skip entries with invalid address' % (ip_stats(ips)), file=sys.stderr)
190-
# Skip duplicattes (in case multiple seeds files were concatenated)
190+
# Skip duplicates (in case multiple seeds files were concatenated)
191191
ips = dedup(ips)
192192
print('%s After removing duplicates' % (ip_stats(ips)), file=sys.stderr)
193193
# Skip entries from suspicious hosts.

0 commit comments

Comments
 (0)