fix(cmd): display all versions, cast to str

This commit is contained in:
setop 2024-03-03 11:42:23 +01:00
parent cd72e16fef
commit e2c846b980
1 changed files with 1 additions and 1 deletions

View File

@ -248,7 +248,7 @@ def doallversions(options):
if props.github:
vers = _gh_versions(props.github)
trace(vers)
print("\n".join(vers))
print("\n".join(map(str,vers)))
else:
warn(f"{tool} not in catalog")