Fixed an issue when pio package unpublish command crashes // Resolve #3660

This commit is contained in:
Ivan Kravets
2020-09-09 12:17:09 +03:00
parent 429f416b38
commit cd59c829e0
2 changed files with 2 additions and 1 deletions

View File

@@ -107,7 +107,7 @@ def package_unpublish(package, type, undo): # pylint: disable=redefined-builtin
type=type,
name=spec.name,
owner=spec.owner,
version=spec.requirements,
version=str(spec.requirements),
undo=undo,
)
click.secho(response.get("message"), fg="green")