view: fix some docstrings for arguments

This commit is contained in:
Oliver Breitwieser 2017-09-18 09:23:42 -04:00 committed by scheibelp
parent 9a39efd966
commit af42c24ef5

View File

@ -79,14 +79,14 @@ def setup_parser(sp):
sp.add_argument( sp.add_argument(
'-v', '--verbose', action='store_true', default=False, '-v', '--verbose', action='store_true', default=False,
help="display verbose output") help="If not verbose only warnings/errors will be printed.")
sp.add_argument( sp.add_argument(
'-e', '--exclude', action='append', default=[], '-e', '--exclude', action='append', default=[],
help="exclude packages with names matching the given regex pattern") help="exclude packages with names matching the given regex pattern")
sp.add_argument( sp.add_argument(
'-d', '--dependencies', choices=['true', 'false', 'yes', 'no'], '-d', '--dependencies', choices=['true', 'false', 'yes', 'no'],
default='true', default='true',
help="follow dependencies") help="Link/remove/list dependencies.")
ssp = sp.add_subparsers(metavar='ACTION', dest='action') ssp = sp.add_subparsers(metavar='ACTION', dest='action')