Skip to content
Snippets Groups Projects
Commit f6fd2582 authored by Nico Vermaas's avatar Nico Vermaas
Browse files

show SUMMARY button for LINC also

parent 2f5e2774
No related branches found
No related tags found
No related merge requests found
Pipeline #118566 passed
...@@ -319,6 +319,11 @@ class Task(models.Model): ...@@ -319,6 +319,11 @@ class Task(models.Model):
# is this dirty? yes it is. # is this dirty? yes it is.
return True return True
else: else:
# LINC has a different structure... unfortunately... but support it
try:
summary = self.outputs['summary']
return True
except:
return False return False
@property @property
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment