Module: tools Branch: master Commit: e98b1419259defcd6ff8dcfb4efb28f957f2df4e URL: https://source.winehq.org/git/tools.git/?a=commit;h=e98b1419259defcd6ff8dcfb...
Author: Francois Gouget fgouget@codeweavers.com Date: Thu Aug 30 02:00:29 2018 +0200
testbot/web: Don't put a colon after the module name in the JobDetails page.
Signed-off-by: Francois Gouget <fgouget@codeweavers.com Signed-off-by: Alexandre Julliard julliard@winehq.org
---
testbot/web/JobDetails.pl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/testbot/web/JobDetails.pl b/testbot/web/JobDetails.pl index bcf3231..d10b98e 100644 --- a/testbot/web/JobDetails.pl +++ b/testbot/web/JobDetails.pl @@ -495,7 +495,7 @@ EOF
foreach my $GroupName (@{$Summary->{Groups}}) { - print "<div class='LogDllName'>$GroupName:</div>\n" if ($GroupName); + print "<div class='LogDllName'>$GroupName</div>\n" if ($GroupName);
print "<pre><code>"; my $ErrIndex = 0;