fix(cmd): display all versions, cast to str
This commit is contained in:
parent
cd72e16fef
commit
e2c846b980
|
@ -248,7 +248,7 @@ def doallversions(options):
|
||||||
if props.github:
|
if props.github:
|
||||||
vers = _gh_versions(props.github)
|
vers = _gh_versions(props.github)
|
||||||
trace(vers)
|
trace(vers)
|
||||||
print("\n".join(vers))
|
print("\n".join(map(str,vers)))
|
||||||
else:
|
else:
|
||||||
warn(f"{tool} not in catalog")
|
warn(f"{tool} not in catalog")
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue