From 2b40227bc52daace7efa45e9d284c3ef1bd301e2 Mon Sep 17 00:00:00 2001 From: Don Armstrong Date: Sun, 26 Jul 2009 13:54:44 +0200 Subject: [PATCH] tags are separated by space, not ", " --- Debbugs/Status.pm | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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 => ' ', -- 2.39.2