mirror of
https://git.launchpad.net/ubuntu-dev-tools
synced 2025-04-12 02:41:07 +00:00
grep-merges: support grepping by team name (full name match)
Signed-off-by: Steve Langasek <steve.langasek@ubuntu.com>
This commit is contained in:
parent
3bef7f999b
commit
fec29f22bc
6
debian/changelog
vendored
6
debian/changelog
vendored
@ -1,8 +1,14 @@
|
||||
ubuntu-dev-tools (0.167) UNRELEASED; urgency=medium
|
||||
|
||||
[ Colin Watson ]
|
||||
* syncpackage:
|
||||
+ Support wildcards in sync-blacklist (LP: #1807992).
|
||||
|
||||
[ Steve Langasek ]
|
||||
* grep-merges:
|
||||
+ support grepping by team name (full name match) now that MoM exposes
|
||||
this
|
||||
|
||||
-- Colin Watson <cjwatson@ubuntu.com> Tue, 11 Dec 2018 16:39:00 +0000
|
||||
|
||||
ubuntu-dev-tools (0.166) unstable; urgency=medium
|
||||
|
@ -66,8 +66,13 @@ def main():
|
||||
author = merge['user']
|
||||
if merge.get('uploader'):
|
||||
uploader = '(%s)' % merge['uploader']
|
||||
try:
|
||||
teams = merge['teams']
|
||||
except:
|
||||
teams = []
|
||||
|
||||
pretty_uploader = u'{} {}'.format(author, uploader)
|
||||
if match is None or match in package or match in author or match in uploader:
|
||||
if match is None or match in package or match in author or match in uploader or match in teams:
|
||||
print '%s\t%s' % (package.encode("utf-8"), pretty_uploader.encode("utf-8"))
|
||||
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user