From f476cdfd464fff8415e0711e4b8212342c3ae3f7 Mon Sep 17 00:00:00 2001 From: Michael Tremer Date: Fri, 15 May 2020 12:56:33 +0000 Subject: [PATCH] location-importer: Fix typo in "aut-num" Signed-off-by: Michael Tremer --- src/python/location-importer.in | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/python/location-importer.in b/src/python/location-importer.in index 36a525e..ea6d485 100644 --- a/src/python/location-importer.in +++ b/src/python/location-importer.in @@ -611,8 +611,8 @@ class CLI(object): block.get("is-anycast") == "yes", ) - elif type == "autnum": - autnum = block.get("autnum") + elif type == "aut-num": + autnum = block.get("aut-num") # Check if AS number begins with "AS" if not autnum.startswith("AS"): -- 2.47.3