Fix the bug listing script

The script had the Markdown links in the wrong order.
This commit is contained in:
Markus Mäkelä
2017-09-20 13:34:33 +03:00
parent 9c0dbb5511
commit b2d53a963a

View File

@ -16,5 +16,5 @@ while (<>)
my $issue = @parts[1]; my $issue = @parts[1];
my $desc = @parts[0]; my $desc = @parts[0];
print "* ($issue)[https://jira.mariadb.org/browse/$issue] $desc\n"; print "* [$issue](https://jira.mariadb.org/browse/$issue) $desc\n";
} }