We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6b7c1ee commit e047607Copy full SHA for e047607
src/prefect/cli/block.py
@@ -300,7 +300,7 @@ async def block_delete(
300
await client.delete_block_document(block_id)
301
exit_with_success(f"Deleted Block '{block_id}'.")
302
except ObjectNotFound:
303
- exit_with_error(f"Deployment {block_id!r} not found!")
+ exit_with_error(f"Block {block_id!r} not found!")
304
elif slug is not None:
305
if "/" not in slug:
306
exit_with_error(
@@ -376,7 +376,7 @@ async def block_inspect(
376
block_id, include_secrets=False
377
)
378
379
380
381
382
0 commit comments