mirror of
https://github.com/libvirt/libvirt.git
synced 2025-02-25 18:55:26 -06: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:
@@ -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};
|
||||
|
||||
Reference in New Issue
Block a user