Skip to content

Commit

Permalink
fix: error in submission = w['submission'], error in caper list when …
Browse files Browse the repository at this point in the history
…workflows submitted from caper submit and caper run are mixed up
  • Loading branch information
leepc12 committed Dec 21, 2019
1 parent 177b9a9 commit 882e4f5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion caper/caper.py
Original file line number Diff line number Diff line change
Expand Up @@ -483,7 +483,7 @@ def list(self):
submission = w['submission']

if self._hide_result_before is not None:
if submission <= self._hide_result_before:
if 'submission' in w and w['submission'] <= self._hide_result_before:
continue
for f in formats:
if f == 'workflow_id':
Expand Down

0 comments on commit 882e4f5

Please sign in to comment.