From f1cf1f99919a33b1d18cd8631a169bf8621fec92 Mon Sep 17 00:00:00 2001 From: Don Armstrong Date: Tue, 12 Aug 2008 11:40:59 -0700 Subject: [PATCH] * trim off trailing spaces in summary --- Debbugs/Control.pm | 2 ++ 1 file changed, 2 insertions(+) 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"; -- 2.39.5