From: Roland Häder Date: Thu, 27 Jul 2023 06:08:45 +0000 (+0200) Subject: Continued: X-Git-Url: https://git.mxchange.org/?a=commitdiff_plain;h=948e88b2ccc91662b564af374d38ea9e8568987d;p=fba.git Continued: - added alias for forgejo --- diff --git a/fba/helpers/software.py b/fba/helpers/software.py index a93b086..c108103 100644 --- a/fba/helpers/software.py +++ b/fba/helpers/software.py @@ -70,6 +70,9 @@ def alias(software: str) -> str: elif software == "tkz relay": logger.debug("Setting aoderelay: software='%s'", software) software = "aoderelay" + elif software == "gitdab": + logger.debug("Setting forgejo: software='%s'", software) + software = "forgejo" elif software.find("/") > 0: logger.warning("Spliting of slash: software='%s'", software) software = software.split("/")[-1]