ignore cleanup patches that are merged

Change-Id: Ib0af5b21af70eff23bb9ce0267ca2ecac7e33bd0
Signed-off-by: Doug Hellmann <doug@doughellmann.com>
This commit is contained in:
Doug Hellmann 2018-09-27 14:43:05 -04:00
parent 049d7b384c
commit 78b764a2cd
1 changed files with 11 additions and 1 deletions

View File

@ -218,7 +218,17 @@ class PatchesList(lister.Lister):
change['_TEAM'] = team
to_add.append(change)
if to_add:
rows.extend(get_one_row(c, gov_dat) for c in to_add)
if only_open:
to_add = (
c
for c in to_add
if c.get('status') not in ('MERGED', 'ABANDONED')
)
extra_rows = (
get_one_row(c, gov_dat)
for c in to_add
)
rows.extend(extra_rows)
rows = sorted(rows, key=lambda r: (r[1], r[5], r[4]))