From: Don Armstrong Date: Tue, 12 Aug 2008 18:40:59 +0000 (-0700) Subject: * trim off trailing spaces in summary X-Git-Tag: release/2.6.0~474^2 X-Git-Url: https://git.donarmstrong.com/?a=commitdiff_plain;h=f1cf1f99919a33b1d18cd8631a169bf8621fec92;p=debbugs.git * trim off trailing spaces in summary --- diff --git a/Debbugs/Control.pm b/Debbugs/Control.pm index 418efede..a6e6b24a 100644 --- a/Debbugs/Control.pm +++ b/Debbugs/Control.pm @@ -501,6 +501,8 @@ sub summary { if (not length $summary) { die "Unable to find summary message to use"; } + # trim off a trailing space + $summary =~ s/\ $//; } for my $data (@data) { print {$debug} "Going to change summary";