Hide some tickets from the needsponsor report
This commit is contained in:
parent
8578139ffd
commit
9d79657d2a
1 changed files with 4 additions and 1 deletions
|
@ -230,7 +230,10 @@ def select_needsponsor(bug, bugd):
|
|||
if (bugd['reviewflag'] == ' '
|
||||
and NEEDSPONSOR in bugd['blockedby']
|
||||
and bug.bug_status != 'CLOSED'
|
||||
and nobody(bug.assigned_to) == '(Nobody)'):
|
||||
and nobody(bug.assigned_to) == '(Nobody)'
|
||||
and string.lower(bug.status_whiteboard).find('buildfails') < 0
|
||||
and string.lower(bug.status_whiteboard).find('stalledsubmitter') < 0
|
||||
and string.lower(bug.status_whiteboard).find('awaitingsubmitter') < 0):
|
||||
return 1
|
||||
return 0
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue