Module: tools Branch: master Commit: 9532f0fb5c3f26a83324dd4d7d81bdea74fed079 URL: https://source.winehq.org/git/tools.git/?a=commit;h=9532f0fb5c3f26a83324dd4d...
Author: Francois Gouget fgouget@codeweavers.com Date: Fri Mar 6 13:18:16 2020 +0100
testbot: Tweak placement of 'Re:' in the Job title.
Signed-off-by: Francois Gouget fgouget@codeweavers.com Signed-off-by: Alexandre Julliard julliard@winehq.org
---
testbot/lib/WineTestBot/Patches.pm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/testbot/lib/WineTestBot/Patches.pm b/testbot/lib/WineTestBot/Patches.pm index a76c35f..6638fb9 100644 --- a/testbot/lib/WineTestBot/Patches.pm +++ b/testbot/lib/WineTestBot/Patches.pm @@ -236,7 +236,7 @@ sub Submit($$;$) my $PropertyDescriptor = $Jobs->GetPropertyDescriptorByName("Remarks"); my $Remarks = "[$PatchesMailingList] "; # Keep Re because it's similar to a version - $Remarks = "$SubjectInfo->{Re} $Remarks" if ($SubjectInfo->{Re}); + $Remarks .= "$SubjectInfo->{Re} " if ($SubjectInfo->{Re}); $Remarks .= "$SubjectInfo->{Domain} " if ($SubjectInfo->{Domain}); $Remarks .= "v$SubjectInfo->{Version} " if ($SubjectInfo->{Version}); $Remarks .= $SubjectInfo->{Title};