Index: Jenkins/FullBuild
===================================================================
--- Jenkins/FullBuild	(revision e394618e22913738ce36a3d49cbf30d0b57e273e)
+++ Jenkins/FullBuild	(revision 72e2ea09917002f1bb895d9266ba2e37829264f0)
@@ -99,12 +99,14 @@
 	//attach the build log to the email
 	catch (Exception caughtError) {
+		echo('error caught')
+
 		//rethrow error later
 		err = caughtError
 
 		//Store the result of the build log
-		currentBuild.result = "${status_prefix} FAILURE".trim()
+		currentBuild.result = 'FAILURE'
 
 		//Send email to notify the failure
-		promote_email(currentBuild.result)
+		promote_failure_email()
 	}
 
@@ -121,5 +123,7 @@
 
 //Email notification on a full build failure
-def promote_email(String status) {
+def promote_failure_email() {
+	echo('notifying users')
+
 	//Since tokenizer doesn't work, figure stuff out from the environnement variables and command line
 	//Configurations for email format
@@ -134,5 +138,5 @@
 - Status --------------------------------------------------------------
 
-PROMOTE FAILURE - ${status}
+PROMOTE FAILURE
 """
 
