From 85070f38d834995493d3bb49a12d22870a70ba88 Mon Sep 17 00:00:00 2001 From: Cyril Brulebois Date: Tue, 11 Aug 2015 22:26:57 +0000 Subject: [PATCH] =?UTF-8?q?excuses:=20New=20try=20for=20block-udeb=20?= =?UTF-8?q?=E2=86=92=20d-i=20RM.?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Cyril Brulebois --- britney.py | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/britney.py b/britney.py index 3b2651d..36dc546 100755 --- a/britney.py +++ b/britney.py @@ -1339,9 +1339,12 @@ 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': - excuse.addhtml("Not touching package due to %s request by %s " - "(check https://release.debian.org/jessie/freeze_policy.html if update is needed)" % - (block_cmd, blocked[block_cmd].user)) + tooltip = "check https://release.debian.org/jessie/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.addreason("block") else: excuse.addhtml("NEEDS APPROVAL BY RM")