Cope with changed flag return type
This commit is contained in:
parent
88140c93bd
commit
f692897f41
1 changed files with 4 additions and 2 deletions
|
@ -195,8 +195,10 @@ def run_query(bz):
|
||||||
if bug.depends_on:
|
if bug.depends_on:
|
||||||
alldeps.update(bug.depends_on)
|
alldeps.update(bug.depends_on)
|
||||||
|
|
||||||
if bug.flags.find('needinfo?') >= 0:
|
for flag in bug.flags:
|
||||||
needinfo.add(bug.id)
|
if (flag['name'] == 'needinfo'
|
||||||
|
and flag['status'] == '?'):
|
||||||
|
needinfo.add(bug.id)
|
||||||
|
|
||||||
# Get the status of each "interesting" bug
|
# Get the status of each "interesting" bug
|
||||||
for i in seq_max_split(alldeps.union(needinfo), 500):
|
for i in seq_max_split(alldeps.union(needinfo), 500):
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue