From: Don Armstrong Date: Sun, 26 Jul 2009 11:54:44 +0000 (+0200) Subject: tags are separated by space, not ", " X-Git-Tag: release/2.6.0~457^2~1 X-Git-Url: https://git.donarmstrong.com/?a=commitdiff_plain;h=2b40227bc52daace7efa45e9d284c3ef1bd301e2;p=debbugs.git tags are separated by space, not ", " --- diff --git a/Debbugs/Status.pm b/Debbugs/Status.pm index 93b13ce..9bb7ce8 100644 --- a/Debbugs/Status.pm +++ b/Debbugs/Status.pm @@ -291,7 +291,7 @@ my %split_fields = affects => \&splitpackages, blocks => $ditch_empty_space, blockedby => $ditch_empty_space, - tags => sub {return &{$ditch_empty}(qr/\s*\,\s*/,@_)}, + tags => $ditch_empty_space, found_versions => $ditch_empty_space, fixed_versions => $ditch_empty_space, mergedwith => $ditch_empty_space, @@ -347,7 +347,7 @@ sub join_status_fields { affects => ', ', blocks => ' ', blockedby => ' ', - tags => ', ', + tags => ' ', found_versions => ' ', fixed_versions => ' ', found_date => ' ',