ignore + and - when looking for teams with open patches

+ means done and - means nothing needed to be done

Change-Id: I12bf4d80234a0f49bb3919940646b378e4d12a18
Signed-off-by: Doug Hellmann <doug@doughellmann.com>
This commit is contained in:
Doug Hellmann 2018-12-13 08:45:36 -05:00
parent 2255950637
commit fa9c110028
1 changed files with 1 additions and 1 deletions

View File

@ -513,7 +513,7 @@ class PatchesCount(lister.Lister):
data = [
row
for row in data
if row[1:4] != ('+', '+', '+')
if ''.join(row[1:4]).strip('+-')
]
return (columns, data)