Skip to content

Commit 7646d72

Browse files
committed
down: fixup messages in console
1 parent 51d79d6 commit 7646d72

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

src/warnet/control.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -141,7 +141,9 @@ def uninstall_release(namespace, release_name):
141141

142142
# Wait for all tasks to complete and print results
143143
for future in as_completed(futures):
144-
console.print(f"[yellow]{future.result()}[/yellow]")
144+
result = future.result()
145+
msg = result if isinstance(result, str) else result.metadata.name
146+
console.print(f"[yellow]Deletion: {msg} [/yellow]")
145147

146148
console.print("[bold yellow]Teardown process initiated for all components.[/bold yellow]")
147149
console.print("[bold yellow]Note: Some processes may continue in the background.[/bold yellow]")

0 commit comments

Comments
 (0)