From 1af7420f507698e943f59a64b67b1328a6d1fe4e Mon Sep 17 00:00:00 2001 From: Kayou Date: Thu, 30 May 2019 23:24:29 +0200 Subject: [PATCH] Trying to fix the maintainer page. --- app/app.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/app/app.py b/app/app.py index efe448c..8e640c1 100644 --- a/app/app.py +++ b/app/app.py @@ -173,8 +173,8 @@ def app_maintainer_dash(maintainer=None): if isinstance(app.public_level, str): app.public_level = -1 - if app.maintained and app.state in ["working", "official"]: - maintainers.update(app.maintainers) + if app.maintained: + maintainers.update(app.maintainers.lower().replace(" ", "")) maintainers = sorted(maintainers, key=lambda m: m.lower())