summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPawel Hajdan, Jr <phajdan.jr@gentoo.org>2012-03-27 17:26:09 +0200
committerPawel Hajdan, Jr <phajdan.jr@gentoo.org>2012-03-27 17:26:09 +0200
commit588a007bdde5dcb943557d4448a2c317a075763a (patch)
tree0a9d15de894f0d26e831978a3feeb168f91a914e
parentAvoid duplicating work: remember which bugs have been done. (diff)
downloadarch-tools-588a007bdde5dcb943557d4448a2c317a075763a.tar.gz
arch-tools-588a007bdde5dcb943557d4448a2c317a075763a.tar.bz2
arch-tools-588a007bdde5dcb943557d4448a2c317a075763a.zip
Also consider STABLEREQ bugs for maintainer timeout.
Someone cleverly added STABLEREQ keyword to those bugs.
-rwxr-xr-xmaintainer-timeout.py2
1 files changed, 0 insertions, 2 deletions
diff --git a/maintainer-timeout.py b/maintainer-timeout.py
index ee096c4..c825f5d 100755
--- a/maintainer-timeout.py
+++ b/maintainer-timeout.py
@@ -34,8 +34,6 @@ if __name__ == "__main__":
bugs += [Bug(xml) for xml in bugzilla.get([bug['bugid'] for bug in chunk]).findall("bug")]
for bug in bugs:
# Skip bugs where stabilization seems to be already in progress.
- if 'STABLEREQ' in bug.keywords():
- continue
arch_found = False
for arch in portage.archlist:
if '%s@gentoo.org' % arch in bug.cc():