diff --git a/bugbot/rules/severity_inconsistency.py b/bugbot/rules/severity_inconsistency.py index 11313c3e7..75e837615 100644 --- a/bugbot/rules/severity_inconsistency.py +++ b/bugbot/rules/severity_inconsistency.py @@ -30,7 +30,7 @@ def columns(self): return ["id", "summary", "severity", "accessibility_severity"] def get_mail_to_auto_ni(self, bug): - for field in ["assigned_to", "triage_owner"]: + for field in ["triage_owner", "assigned_to"]: person = bug.get(field, "") if person and not utils.is_no_assignee(person): return {"mail": person, "nickname": bug[f"{field}_detail"]["nick"]}