summaryrefslogtreecommitdiffstats
path: root/build/download/http_downloader.py
diff options
context:
space:
mode:
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):