mirror of
https://git.launchpad.net/ubuntu-dev-tools
synced 2025-04-16 21:01:10 +00:00
grep-merges: flake8-clean.
Signed-off-by: Steve Langasek <steve.langasek@ubuntu.com>
This commit is contained in:
parent
eb84867721
commit
7143367610
6
debian/changelog
vendored
6
debian/changelog
vendored
@ -1,3 +1,9 @@
|
||||
ubuntu-dev-tools (0.168) UNRELEASED; urgency=medium
|
||||
|
||||
* grep-merges: flake8-clean.
|
||||
|
||||
-- Steve Langasek <steve.langasek@ubuntu.com> Tue, 07 May 2019 21:24:14 -0700
|
||||
|
||||
ubuntu-dev-tools (0.167) eoan; urgency=medium
|
||||
|
||||
[ Colin Watson ]
|
||||
|
@ -68,12 +68,14 @@ def main():
|
||||
uploader = '(%s)' % merge['uploader']
|
||||
try:
|
||||
teams = merge['teams']
|
||||
except:
|
||||
except e:
|
||||
teams = []
|
||||
|
||||
pretty_uploader = u'{} {}'.format(author, 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"))
|
||||
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"))
|
||||
|
||||
|
||||
if __name__ == '__main__':
|
||||
|
Loading…
x
Reference in New Issue
Block a user