From 60f09cda927c0a9bc96eb615f508e9d219bfed1b Mon Sep 17 00:00:00 2001 From: Michael Tremer Date: Thu, 7 Mar 2024 13:52:01 +0000 Subject: [PATCH] importer: Fix another incorrect variable name Signed-off-by: Michael Tremer --- src/scripts/location-importer.in | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/scripts/location-importer.in b/src/scripts/location-importer.in index b9d8ecc..b23ed32 100644 --- a/src/scripts/location-importer.in +++ b/src/scripts/location-importer.in @@ -1422,7 +1422,7 @@ class CLI(object): ) ON CONFLICT (network) DO UPDATE SET country = excluded.country - """, "%s" % network, country_code, [country], source_key, + """, "%s" % network, country_code, [country_code], source_key, ) async def handle_update_announcements(self, ns): -- 2.39.5