use case-insensitive sort for teams on highlights page
Change-Id: If6b603b6d94f5ac7dceb5149bb8ac2e238e810a8 Signed-off-by: Doug Hellmann <doug@doughellmann.com>
This commit is contained in:
parent
50c4cd9e56
commit
e0c0a0d823
@ -425,7 +425,7 @@ class HighlightsDirective(rst.Directive):
|
||||
series_highlights = self._get_deliverable_highlights(series)
|
||||
source_name = '<{}>'.format(__name__)
|
||||
|
||||
for team in sorted(series_highlights.keys()):
|
||||
for team in sorted(series_highlights.keys(), key=lambda x: x.lower()):
|
||||
app.info('[highlights] rendering %s highlights for %s' %
|
||||
(team.title(), series))
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user