Skip to content

Commit

Permalink
Merge 1f75d25 into 96d6c26
Browse files Browse the repository at this point in the history
  • Loading branch information
Dinos Kousidis committed Aug 1, 2018
2 parents 96d6c26 + 1f75d25 commit 0a00e58
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion reana_client/cli/workflow.py
Original file line number Diff line number Diff line change
Expand Up @@ -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']

Expand Down

0 comments on commit 0a00e58

Please sign in to comment.