]> git.mxchange.org Git - fba.git/commitdiff
Continued:
authorRoland Häder <roland@mxchange.org>
Sun, 6 Aug 2023 01:01:37 +0000 (03:01 +0200)
committerRoland Häder <roland@mxchange.org>
Sun, 6 Aug 2023 01:01:37 +0000 (03:01 +0200)
- ops, missed 1st parameter

fba/helpers/software.py

index 858954a9a07d594de6b7acf59614b84de7c80306..cdb3bbe81b5e7f1cabf049d80366c2b3ae004a12 100644 (file)
@@ -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)