From e64f4e2e7467d38c6494392d7e4350d12bc0a005 Mon Sep 17 00:00:00 2001 From: Colin Watson Date: Fri, 9 Nov 2012 10:48:04 +0000 Subject: [PATCH] Update contact information for Ubuntu --- britney.py | 13 +++++-------- 1 file changed, 5 insertions(+), 8 deletions(-) diff --git a/britney.py b/britney.py index 5e5d323..cf07c4d 100755 --- a/britney.py +++ b/britney.py @@ -1358,8 +1358,8 @@ class Britney(object): # if the package is blocked, skip it for hint in self.hints.search('block', package=pkg, removal=True): - excuse.addhtml("Not touching package, as requested by %s " - "(check https://release.debian.org/testing/freeze_policy.html if update is needed)" % hint.user) + excuse.addhtml("Not touching package, as requested by %s (contact #ubuntu-release " + "if update is needed)" % hint.user) excuse.addreason("block") self.excuses[excuse.name] = excuse return False @@ -1623,12 +1623,9 @@ class Britney(object): excuse.addhtml("%s request by %s ignored due to version mismatch: %s" % (unblock_cmd.capitalize(), unblocks[0].user, unblocks[0].version)) if suite == 'unstable' or block_cmd == 'block-udeb': - tooltip = "check https://release.debian.org/testing/freeze_policy.html if update is needed" - # redirect people to d-i RM for udeb things: - if block_cmd == 'block-udeb': - tooltip = "please contact the d-i release manager if an update is needed" - excuse.addhtml("Not touching package due to %s request by %s (%s)" % - (block_cmd, blocked[block_cmd].user, tooltip)) + excuse.addhtml("Not touching package due to %s request by %s " + "(contact #ubuntu-release if update is needed)" % + (block_cmd, blocked[block_cmd].user)) excuse.addreason("block") else: excuse.addhtml("NEEDS APPROVAL BY RM")