diff --git a/reana_client/cli/workflow.py b/reana_client/cli/workflow.py index 7a75fe7c..b803038d 100644 --- a/reana_client/cli/workflow.py +++ b/reana_client/cli/workflow.py @@ -327,7 +327,7 @@ def get_data_from_row(row, data, headers): succeeded_jobs = succeeded_jobs.get('total') else: succeeded_jobs = 0 - if row['progress']['total'] > 0: + if row['progress']['total'].get('total') or 0 > 0: if 'progress' not in headers: headers += ['progress']