Skip to content
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions src/holoscan_cli/__main__.py
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@
}

REMOVED_COMMAND_FOOTER = (
"Removed HAP/MAP commands are out of scope for holoscan-cli v1. Pin "
"Removed HAP/MAP commands are not available since holoscan v4.3.0. Pin "
"holoscan-cli<=4.2.0 if you still need that legacy command surface."
)

Expand Down Expand Up @@ -179,7 +179,7 @@ def _exit_if_removed_command(argv: list[str]) -> None:
return
program = _program_name(argv)
print(
f"Error: '{program} {command}' was removed in holoscan-cli v1 — "
f"Error: '{program} {command}' was removed since holoscan v4.3.0 — "
f"{REMOVED_COMMANDS[command]} is no longer shipped.\n"
f"{REMOVED_COMMAND_FOOTER}",
file=sys.stderr,
Expand Down
Loading