Skip to content
Snippets Groups Projects
Commit 02666ec0 authored by Branson Craig Stephens's avatar Branson Craig Stephens
Browse files

Fixed bug that prevented HardwareInjections from receiving 'H' graceids.

parent 1f1b12de
No related branches found
No related tags found
No related merge requests found
......@@ -143,7 +143,7 @@ class Event(models.Model):
return "T%04d" % self.id
elif str(self.search) == str("MDC"):
return "M%04d" % self.id
elif self.pipeline == "HardwareInjection":
elif self.pipeline.name == "HardwareInjection":
return "H%04d" % self.id
elif self.group.name == "External":
return "E%04d" % self.id
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment