1525
1527
# happen to be the only values that changed. We explicitly verify that
1526
1528
# we got a new status and/or assignee, because the form is not always
1527
1529
# guaranteed to pass all the values. For example: bugtasks linked to a
1531
1533
new_status = new_values.pop("status", missing)
1532
1534
new_assignee = new_values.pop("assignee", missing)
1533
1535
if new_status is not missing and bugtask.status != new_status:
1537
1550
if new_assignee is not missing and bugtask.assignee != new_assignee:
1538
1551
if new_assignee is not None and new_assignee != self.user: