From: Joerg Jaspert Date: Sun, 2 Mar 2008 23:28:41 +0000 (+0100) Subject: Fix en_Ganneff X-Git-Url: https://err.no/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=6f5dfdf5efaa1a3ab73ab8780eec166b2c131d75;p=dak Fix en_Ganneff --- diff --git a/dak/process_unchecked.py b/dak/process_unchecked.py index 0f462b56..fc5ca004 100755 --- a/dak/process_unchecked.py +++ b/dak/process_unchecked.py @@ -1042,18 +1042,16 @@ def check_transition(sourcepkg): # The source is affected, lets reject it. reject("""%s: part of the %s transition. -Your package is part of a testing transition to get %s migrated. +Your package is part of a testing transition designed to get %s migrated +(it currently is at version %s, we need version %s) Transition description: %s -This transition will finish when %s, version %s, reaches testing (it currently -has version %s). -This transition is managed by the Release Team and %s +This transition is managed by the Release Team, and %s is the Release-Team member responsible for it. -Please contact them or debian-release@lists.debian.org if you +Please contact %s or debian-release@lists.debian.org if you need further assistance. - """ - % (sourcepkg, trans, source, t["reason"], source, new_vers, curvers, t["rm"])) + """ % (sourcepkg, trans, source, curvers, new_vers, t["reason"], t["rm"], t["rm"])) return 0 ################################################################################