pthbs

Packaging Through Hashed Build Scripts
git clone https://ccx.te2000.cz/git/pthbs
Log | Files | Refs | Submodules | README

commit c4d72f6dd47e6fd65821bb95844794589da9f059
parent efb13a8992180cb8cdfc0018c35542a92a05af80
Author: Jan Pobříslo <ccx@te2000.cz>
Date:   Thu, 22 Feb 2024 07:07:04 +0100

Fix argparse help

Diffstat:
Muserns_sandbox.py | 4++--
1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/userns_sandbox.py b/userns_sandbox.py @@ -365,13 +365,13 @@ argument_parser.add_argument( '--vars', '-y', type=pathlib.PosixPath, - description="vars.yaml to read configuration from", + help="vars.yaml to read configuration from", ) argument_parser.add_argument( '--versions', '-V', type=pathlib.PosixPath, - description="versions dir (e.g. /versions)", + help="versions dir (e.g. /versions)", ) argument_parser.add_argument('--extra-mount', action='append', type=parse_mount) argument_parser.add_argument('root_dir', type=pathlib.PosixPath)