Merge "ignore + and - when looking for teams with open patches"

This commit is contained in:
Zuul 2018-12-13 14:18:40 +00:00 committed by Gerrit Code Review
commit d41c659628
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)