diff options
author | Radostin Stoyanov <rstoyanov1@gmail.com> | 2017-06-29 18:44:37 +0100 |
---|---|---|
committer | Cédric Bosdonnat <cbosdonnat@suse.com> | 2017-07-01 07:56:10 +0200 |
commit | 4e516249e2509b48f235394af541da1fe06c0e33 (patch) | |
tree | fbc8c6021a91b9e6d015a53d646b3893b59c1288 /src/virtBootstrap/virt_bootstrap.py | |
parent | 1dd194f36079fd822f667419e030fbd07a8480b9 (diff) | |
download | virt-bootstrap.git-4e516249e2509b48f235394af541da1fe06c0e33.tar.gz virt-bootstrap.git-4e516249e2509b48f235394af541da1fe06c0e33.tar.xz virt-bootstrap.git-4e516249e2509b48f235394af541da1fe06c0e33.zip |
Improve help menu
Diffstat (limited to 'src/virtBootstrap/virt_bootstrap.py')
-rwxr-xr-x | src/virtBootstrap/virt_bootstrap.py | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/src/virtBootstrap/virt_bootstrap.py b/src/virtBootstrap/virt_bootstrap.py index 681e50d..fc3603d 100755 --- a/src/virtBootstrap/virt_bootstrap.py +++ b/src/virtBootstrap/virt_bootstrap.py @@ -151,11 +151,9 @@ def main(): parser.add_argument("--not-secure", action='store_true', help=_("Ignore HTTPS errors")) parser.add_argument("-u", "--username", default=None, - help=_("Username to use" - "to connect to the source registry")) + help=_("Username for accessing the source registry")) parser.add_argument("-p", "--password", default=None, - help=_("Password to use" - "to connect to the source registry")) + help=_("Password for accessing the source registry")) parser.add_argument("--root-password", default=None, help=_("Root password to set in the created rootfs")) parser.add_argument("--no-cache", action="store_true", |