- fixed finding "powered by " (start of string)
software = version.remove(software)
# DEBUG: print(f"DEBUG: software[]='{type(software)}'")
- if isinstance(software, str) and " powered by " in software:
+ if isinstance(software, str) and "powered by " in software:
# DEBUG: print(f"DEBUG: software='{software}' has 'powered by' in it")
software = version.remove(version.strip_powered_by(software))
elif isinstance(software, str) and " hosted on " in software: