summaryrefslogtreecommitdiffstats
path: root/build/download/http_downloader.py
diff options
context:
space:
mode:
authorMilan Verespej <m.verespej@partner.samsung.com>2019-06-18 13:46:48 +0200
committerMilan Verespej <m.verespej@partner.samsung.com>2019-06-18 18:43:48 +0200
commit4c7e8924320654de60efd5096d6678549ca5ac05 (patch)
tree62ca36db448547be5036da3321f3f54204bd1787 /build/download/http_downloader.py
parent2e1328a8867190f203043fb5758dc8117ba3d673 (diff)
Refactor npm packages download
Series of commits to improve python download scripts. Issue-ID: OOM-1803 Change-Id: I199660ab121038780c34065f78538bb4e7b07eb5 Signed-off-by: Milan Verespej <m.verespej@partner.samsung.com>
Diffstat (limited to 'build/download/http_downloader.py')
-rw-r--r--build/download/http_downloader.py4
1 files changed, 2 insertions, 2 deletions
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):