From: Anthony Towns <aj@azure.humbug.org.au>
Date: Fri, 21 Mar 2008 14:04:34 +0000 (+0000)
Subject: extensions.py: minor tidyup
X-Git-Url: https://git.decadent.org.uk/gitweb/?a=commitdiff_plain;h=da0da02412e7b6a51a88a7ffcbe50893c28a81b9;p=dak.git

extensions.py: minor tidyup
---

diff --git a/config/debian/extensions.py b/config/debian/extensions.py
index 4340ca3b..9823b29c 100644
--- a/config/debian/extensions.py
+++ b/config/debian/extensions.py
@@ -57,18 +57,17 @@ def check_transition():
 
 		rejectmsg = "%s: part of the %s transition.\n\n" % (
 			sourcepkg, trans)
+		rejectmsg += "Transition description: %s\n\n" % (t["reason"])
 
 	    	if current is not None:
 	    	    currentlymsg = "at version %s" % (current)
 		else:
 		    currentlymsg = "not present in testing"
 
-		rejectmsg += "Transition description: %s\n\n" % (t["reason"])
-
 		rejectmsg += "\n".join(textwrap.wrap("""Your package
 is part of a testing transition designed to get %s migrated (it is
 currently %s, we need version %s).  This transition is managed by the
-Release Team, and %s is the Release-Team member responsible for it.
+release team, and %s is the release team member responsible for it.
 Please mail debian-release@lists.debian.org or contact %s directly if you
 need further assistance."""
 			% (source, currentlymsg, expected,t["rm"], t["rm"])))