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