From 4c7e8924320654de60efd5096d6678549ca5ac05 Mon Sep 17 00:00:00 2001 From: Milan Verespej Date: Tue, 18 Jun 2019 13:46:48 +0200 Subject: Refactor npm packages download Series of commits to improve python download scripts. Issue-ID: OOM-1803 Change-Id: I199660ab121038780c34065f78538bb4e7b07eb5 Signed-off-by: Milan Verespej --- build/download/http_downloader.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'build/download/http_downloader.py') diff --git a/build/download/http_downloader.py b/build/download/http_downloader.py index 69adc4dd..ba2c0f7e 100644 --- a/build/download/http_downloader.py +++ b/build/download/http_downloader.py @@ -36,8 +36,8 @@ log = logging.getLogger(__name__) class HttpDownloader(ConcurrentDownloader): - def __init__(self, *list_args, workers=None): - super().__init__('http files', *list_args, workers=workers) + def __init__(self, *list_args, list_type='http_files', workers=None): + super().__init__(list_type, *list_args, workers=workers) @property def check_table(self): -- cgit 1.2.3-korg