diff options
| author | Michał Górny <mgorny@gentoo.org> | 2017-10-28 23:55:06 +0200 |
|---|---|---|
| committer | Michał Górny <mgorny@gentoo.org> | 2017-10-28 23:55:06 +0200 |
| commit | 322f503cf5a6af5402c1c55411810a40b4f73cf3 (patch) | |
| tree | d8b00c9c5d8a9c9a8f5809e520f4cc64d52f179e | |
| parent | cedf103b0abe2d760d05ba83a29af16ee3f7ae44 (diff) | |
| download | gemato-322f503cf5a6af5402c1c55411810a40b4f73cf3.tar.gz | |
cli: Add missing help to verify option
| -rw-r--r-- | gemato/cli.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/gemato/cli.py b/gemato/cli.py index 806e895..737814c 100644 --- a/gemato/cli.py +++ b/gemato/cli.py @@ -85,7 +85,8 @@ def main(argv): description='Gentoo Manifest Tool') subp = argp.add_subparsers() - verify = subp.add_parser('verify') + verify = subp.add_parser('verify', + help='Verify one or more directories against Manifests') verify.add_argument('paths', nargs='*', default=['.'], help='Paths to verify (defaults to "." if none specified)') verify.add_argument('-k', '--keep-going', action='store_true', |
