We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a51ca78 commit 283ca99Copy full SHA for 283ca99
silverback/_cli.py
@@ -335,11 +335,11 @@ def update_workspace(
335
elif name == "" or slug == "":
336
raise click.UsageError("Empty string value found for name or slug.")
337
338
- workspace = workspace_client.update(
+ updated_workspace = workspace_client.update(
339
name=name,
340
slug=slug,
341
)
342
- click.echo(f"{click.style('SUCCESS', fg='green')}: Updated '{workspace.name}'")
+ click.echo(f"{click.style('SUCCESS', fg='green')}: Updated '{updated_workspace.name}'")
343
344
345
@workspaces.command(name="delete", section="Platform Commands (https://silverback.apeworx.io)")
0 commit comments