Trying to fix the maintainer page.

This commit is contained in:
Kayou 2019-05-30 23:24:29 +02:00 committed by GitHub
parent 3101b95213
commit 1af7420f50
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -173,8 +173,8 @@ def app_maintainer_dash(maintainer=None):
if isinstance(app.public_level, str): if isinstance(app.public_level, str):
app.public_level = -1 app.public_level = -1
if app.maintained and app.state in ["working", "official"]: if app.maintained:
maintainers.update(app.maintainers) maintainers.update(app.maintainers.lower().replace(" ", ""))
maintainers = sorted(maintainers, key=lambda m: m.lower()) maintainers = sorted(maintainers, key=lambda m: m.lower())