From a3cc2ce796f988735c621ab0ca23890320ba2f43 Mon Sep 17 00:00:00 2001 From: Eelco Dolstra Date: Tue, 7 Feb 2012 14:51:47 +0100 Subject: [PATCH] Remove redundant dot in status emails E.g.: This is to let you know that Hydra build 1998534 of job patchelf:trunk:deb_ubuntu1110x86_64 is 'Success'.. --- src/script/hydra-build | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/script/hydra-build b/src/script/hydra-build index 42809f6f..d7f3de41 100755 --- a/src/script/hydra-build +++ b/src/script/hydra-build @@ -163,7 +163,7 @@ sub sendEmailNotification { my $body = "Hi,\n" . "\n" . "This is to let you know that Hydra build " . $build->id - . " of job " . $jobName . " " . (defined $prevBuild ? "has changed from '".statusDescription($prevBuild->resultInfo->buildstatus)."' to '$status'" : "is '$status'." ) .".\n" + . " of job " . $jobName . " " . (defined $prevBuild ? "has changed from '" . statusDescription($prevBuild->resultInfo->buildstatus) . "' to '$status'" : "is '$status'" ) .".\n" . "\n" . "Complete build information can be found on this page: " . "$selfURI/build/" . $build->id . "\n"