= bug description =
Whenever the milestone updates page is loaded, there is a TB and an HTTP 500 is returned
= bug analysis =
One of the update filters in !init!.py still references out of date field names for bug objects:
{{{ for bug in update.bugs: if bug.proposed_blocker or bug.accepted_blocker: return 'blocker' elif bug.proposed_nth or bug.accepted_nth: is_nth = True }}}
bug.proposed_nth and bug.accepted_nth need to be changed to bug.proposed_fe and bug.accepted_fe, respectively.
Fixed in [https://git.fedorahosted.org/cgit/blockerbugs.git/commit/?h=develop&id=afa342039f8f3a890c295bda98a659b0c2b55780 afa342039f8f3a890c295bda98a659b0c2b55780]
Log in to comment on this ticket.