mirror of
https://gitlab.com/libvirt/libvirt.git
synced 2025-02-22 11:22:23 +00:00
Fix off-by-1 in todo page generator
The todo.pl script had an off-by-1 which meant any category with only a single bug would not appear * docs/todo.pl: Fix off-by-1
This commit is contained in:
parent
c4bd44d927
commit
a59dde7869
@ -97,7 +97,7 @@ if (defined $blurb) {
|
||||
print " </p>\n";
|
||||
}
|
||||
foreach my $tracker (sort { $a->{summary} cmp $b->{summary} } @trackers) {
|
||||
next unless $#{$tracker->{features}} > 0;
|
||||
next unless $#{$tracker->{features}} >= 0;
|
||||
|
||||
my $summary = &escape($tracker->{summary});
|
||||
my $id = $tracker->{id};
|
||||
|
Loading…
x
Reference in New Issue
Block a user