From mboxrd@z Thu Jan 1 00:00:00 1970 From: Peter =?utf-8?q?M=C3=BCller?= To: location@lists.ipfire.org Subject: [PATCH] location-importer.in: always convert organisation handles into upper cases Date: Tue, 03 Nov 2020 15:31:08 +0000 Message-ID: <20201103153108.17131-1-peter.mueller@ipfire.org> MIME-Version: 1.0 Content-Type: multipart/mixed; boundary="===============5397342371847916611==" List-Id: --===============5397342371847916611== Content-Type: text/plain; charset="utf-8" Content-Transfer-Encoding: 8bit Fixes: #12523 Signed-off-by: Peter Müller --- src/python/location-importer.in | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/src/python/location-importer.in b/src/python/location-importer.in index 864eab1..2dec89e 100644 --- a/src/python/location-importer.in +++ b/src/python/location-importer.in @@ -560,7 +560,7 @@ class CLI(object): autnum["asn"] = m.group(2) elif key == "org": - autnum[key] = val + autnum[key] = val.upper() # Skip empty objects if not autnum: @@ -646,7 +646,9 @@ class CLI(object): # Split line key, val = split_line(line) - if key in ("organisation", "org-name"): + if key == "organisation": + org[key] = val.upper() + elif key == "org-name": org[key] = val # Skip empty objects -- 2.20.1 --===============5397342371847916611==--