From mboxrd@z Thu Jan 1 00:00:00 1970 From: Michael Tremer To: location@lists.ipfire.org Subject: [PATCH 08/10] importer: Fix reading Geofeeds from remarks Date: Tue, 27 Sep 2022 16:48:45 +0000 Message-ID: <20220927164847.3409646-8-michael.tremer@ipfire.org> In-Reply-To: <20220927164847.3409646-1-michael.tremer@ipfire.org> MIME-Version: 1.0 Content-Type: multipart/mixed; boundary="===============7121651376527642406==" List-Id: --===============7121651376527642406== Content-Type: text/plain; charset="utf-8" Content-Transfer-Encoding: quoted-printable Only RIPE has a dedicated geofeed field. For others, this data needs to be read from the remarks section. Signed-off-by: Michael Tremer --- src/scripts/location-importer.in | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/scripts/location-importer.in b/src/scripts/location-importer= .in index 7e2136e..0e2764e 100644 --- a/src/scripts/location-importer.in +++ b/src/scripts/location-importer.in @@ -863,8 +863,8 @@ class CLI(object): inetnum["geofeed"] =3D val =20 # Parse geofeed when used as a remark - elif key =3D=3D "remark": - m =3D re.match(r"^(?:geofeed|Geofeed)\s+(https://.*)", val) + elif key =3D=3D "remarks": + m =3D re.match(r"^(?:Geofeed)\s+(https://.*)", val) if m: inetnum["geofeed"] =3D m.group(1) =20 --=20 2.30.2 --===============7121651376527642406==--