downloading and installing node

This commit is contained in:
Vinícius Moreira
2019-12-10 13:03:03 -03:00
parent b9ed2cf4c1
commit 354af8b041
4 changed files with 107 additions and 4 deletions

View File

@@ -91,7 +91,9 @@ class AdaptableFileDownloader(FileDownloader):
file_size = self.http_client.get_content_length(file_url)
msg = bold('[{}] ').format(downloader) + self.i18n['downloading'] + ' ' + bold(file_url.split('/')[-1]) + (' ( {} )'.format(file_size) if file_size else '')
watcher.change_substatus(msg)
if watcher:
watcher.change_substatus(msg)
if isinstance(process, SimpleProcess):
success = handler.handle_simple(process)