From: "Peter Müller" <peter.mueller@ipfire.org>
To: location@lists.ipfire.org
Subject: [PATCH] location-importer.in: track original countries more pythonic
Date: Wed, 02 Jun 2021 23:00:22 +0200 [thread overview]
Message-ID: <5c46c7bb-4c42-4b8f-28b6-948c7f5641e8@ipfire.org> (raw)
In-Reply-To: <F1C05B70-B37A-4A17-9BDF-A165643CC07A@ipfire.org>
[-- Attachment #1: Type: text/plain, Size: 1089 bytes --]
https://lists.ipfire.org/pipermail/location/2021-May/000377.html
Reported-by: Michael Tremer <michael.tremer(a)ipfire.org>
Signed-off-by: Peter Müller <peter.mueller(a)ipfire.org>
---
src/python/location-importer.in | 8 +++++---
1 file changed, 5 insertions(+), 3 deletions(-)
diff --git a/src/python/location-importer.in b/src/python/location-importer.in
index a3c16bc..3e1f859 100644
--- a/src/python/location-importer.in
+++ b/src/python/location-importer.in
@@ -628,15 +628,17 @@ class CLI(object):
inetnum[key] = [ipaddress.ip_network(val, strict=False)]
elif key == "country":
+ val = val.upper()
+
# Catch RIR data objects with more than one country code...
- if not key in inetnum.keys():
+ if not key in inetnum:
inetnum[key] = []
else:
- if val.upper() in inetnum.get("country"):
+ if val in inetnum.get("country"):
# ... but keep this list distinct...
continue
- inetnum[key].append(val.upper())
+ inetnum[key].append(val)
# Skip empty objects
if not inetnum or not "country" in inetnum:
--
2.26.2
next parent reply other threads:[~2021-06-02 21:00 UTC|newest]
Thread overview: 2+ messages / expand[flat|nested] mbox.gz Atom feed top
[not found] <F1C05B70-B37A-4A17-9BDF-A165643CC07A@ipfire.org>
2021-06-02 21:00 ` Peter Müller [this message]
2021-06-02 21:01 ` [PATCH v3] location-importer.in: track original countries as well Peter Müller
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=5c46c7bb-4c42-4b8f-28b6-948c7f5641e8@ipfire.org \
--to=peter.mueller@ipfire.org \
--cc=location@lists.ipfire.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox