From: Michael Tremer Date: Thu, 7 Mar 2024 13:52:01 +0000 (+0000) Subject: importer: Fix another incorrect variable name X-Git-Tag: 0.9.18~91 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=60f09cda927c0a9bc96eb615f508e9d219bfed1b;p=location%2Flibloc.git importer: Fix another incorrect variable name Signed-off-by: Michael Tremer --- 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):