commands: better install status help formatting (#41527)
Before (hard to read, doesn't fit on small terminals): : ```console -I, --install-status show install status of packages packages can be: installed [+], missing and needed by an installed package [-], installed in an upstream instance [^], or not installed (no annotation) ``` After (fits in 80 columns): ```console -I, --install-status show install status of packages [+] installed [^] installed in an upstream - not installed [-] missing dep of installed package ```
This commit is contained in:
parent
15623d8077
commit
57ad848f47
@ -384,10 +384,11 @@ def install_status():
|
|||||||
"--install-status",
|
"--install-status",
|
||||||
action="store_true",
|
action="store_true",
|
||||||
default=True,
|
default=True,
|
||||||
help="show install status of packages\n\npackages can be: "
|
help=(
|
||||||
"installed [+], missing and needed by an installed package [-], "
|
"show install status of packages\n"
|
||||||
"installed in an upstream instance [^], "
|
"[+] installed [^] installed in an upstream\n"
|
||||||
"or not installed (no annotation)",
|
" - not installed [-] missing dep of installed package\n"
|
||||||
|
),
|
||||||
)
|
)
|
||||||
|
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user