From: Michael Tremer Date: Fri, 12 Aug 2022 15:47:20 +0000 (+0000) Subject: python: Fix missing bracket X-Git-Tag: 0.9.14~4 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=e76b8204d00e31a022dad9bb48995e9cdb5e1450;p=location%2Flibloc.git python: Fix missing bracket Signed-off-by: Michael Tremer --- 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