From c84e84c227fd9ce8f223aec4049f581251cdc557 Mon Sep 17 00:00:00 2001 From: =?utf8?q?Roland=20H=C3=A4der?= Date: Sun, 6 Aug 2023 03:01:37 +0200 Subject: [PATCH] Continued: - ops, missed 1st parameter --- fba/helpers/software.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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) -- 2.39.5