Fix a match.

Strip '* '.


SVN revision: 15546
This commit is contained in:
sebastid 2005-06-27 13:45:33 +00:00 committed by sebastid
parent 70163428b5
commit 60f0c319b2
1 changed files with 3 additions and 2 deletions

View File

@ -35,9 +35,10 @@ while(<>) {
$is_title = 1;
}
}
} elsif (/$\\* .*/) {
} elsif (/^\* .*/) {
if ($in_body ) {
$total_item_count++;
$_ =~ s/^\* //;
push(@{$todo_hash{$title}}, $item);
$item = {};
$item->{'asignee'} = "Unknown";