missed one listTaskOutput call

This commit is contained in:
Mike McLean 2017-04-04 17:37:10 -04:00
parent 2009780198
commit df416f7c3c

View file

@ -6921,7 +6921,7 @@ def anon_handle_download_task(options, session, args):
downloads = []
for task in downloadable_tasks:
files = session.listTaskOutput(task["id"], all_volumes=True)
files = list_task_output_all_volumes(session, task["id"])
for filename in files:
if filename.endswith(".log") and suboptions.logs:
for volume in files[filename]: