From 8301f9713cb16ee735ccc7b18733ea98c9098a43 Mon Sep 17 00:00:00 2001 From: Michael Tremer Date: Mon, 9 Dec 2019 20:09:36 +0000 Subject: [PATCH] location-exporter: Accept A1, A2, A3 as compat country codes Signed-off-by: Michael Tremer --- src/python/location-exporter.in | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/python/location-exporter.in b/src/python/location-exporter.in index 3074b90..2c5e915 100644 --- a/src/python/location-exporter.in +++ b/src/python/location-exporter.in @@ -291,7 +291,8 @@ class CLI(object): asns.append(object) - elif location.country_code_is_valid(object): + elif location.country_code_is_valid(object) \ + or object in ("A1", "A2", "A3"): countries.append(object) else: -- 2.47.3