From e76b8204d00e31a022dad9bb48995e9cdb5e1450 Mon Sep 17 00:00:00 2001 From: Michael Tremer Date: Fri, 12 Aug 2022 15:47:20 +0000 Subject: [PATCH] python: Fix missing bracket 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 b9e3511..cfc264d 100644 --- a/src/scripts/location-importer.in +++ b/src/scripts/location-importer.in @@ -445,7 +445,7 @@ class CLI(object): for line in downloader.request_lines(url): self._parse_line(line, source, validcountries) except urllib.error.URLError as e: - log.error("Could not retrieve data from %s: %s" % (source, e) + log.error("Could not retrieve data from %s: %s" % (source, e)) error = True # Continue with the next source -- 2.39.5