From: Michael Tremer Date: Fri, 23 Feb 2024 15:36:44 +0000 (+0000) Subject: importer: Pass downloader to the ARIN import X-Git-Tag: 0.9.18~142 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=41f5a7253f04ef1cf57ba6e2fc05ed7e0636ad47;p=location%2Flibloc.git importer: Pass downloader to the ARIN import Signed-off-by: Michael Tremer --- diff --git a/src/scripts/location-importer.in b/src/scripts/location-importer.in index 9459ea0..6a99cf1 100644 --- a/src/scripts/location-importer.in +++ b/src/scripts/location-importer.in @@ -669,7 +669,7 @@ class CLI(object): # Download and import (technical) AS names from ARIN with self.db.transaction(): - self._import_as_names_from_arin() + self._import_as_names_from_arin(downloader) # Return a non-zero exit code for errors return 1 if error else 0