From: Roland Häder Date: Sun, 6 Aug 2023 01:01:37 +0000 (+0200) Subject: Continued: X-Git-Url: https://git.mxchange.org/?a=commitdiff_plain;h=c84e84c227fd9ce8f223aec4049f581251cdc557;p=fba.git Continued: - ops, missed 1st parameter --- diff --git a/fba/helpers/software.py b/fba/helpers/software.py index 858954a..cdb3bbe 100644 --- a/fba/helpers/software.py +++ b/fba/helpers/software.py @@ -84,7 +84,7 @@ def alias(software: str) -> str: software = strip_powered_by(software) elif software.endswith(" experimental"): logger.debug("software='%s' ends with 'experimental", software) - software = strip_until("experimental") + software = strip_until(software, "experimental") if isinstance(software, str) and " by " in software: logger.debug("software='%s' has ' by ' in it", software)