Skip to content

Commit

Permalink
Merge pull request #173 from Martchus/prio
Browse files Browse the repository at this point in the history
Avoid error if priority is absent after f1d4d5c
  • Loading branch information
mergify[bot] committed Feb 29, 2024
2 parents 64dd731 + 221d87b commit 7b921a0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion openqabot/types/incident.py
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ def __init__(self, incident):
self.rrid = f"{self.project}:{self.rr}" if self.rr else None
self.staging = not incident["inReview"]
self.embargoed = incident["embargoed"]
self.priority = incident["priority"]
self.priority = incident.get("priority")

self.channels = [
Repos(p, v, a)
Expand Down

0 comments on commit 7b921a0

Please sign in to comment.