Skip to content

Commit

Permalink
--quiet is now suppressed in help
Browse files Browse the repository at this point in the history
  • Loading branch information
przadka committed Oct 4, 2023
1 parent 1028586 commit c4507ec
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion b2/console_tool.py
Original file line number Diff line number Diff line change
Expand Up @@ -655,7 +655,7 @@ def get_parser(cls, subparsers=None, parents=None, for_docs=False):
common_parser.add_argument('--verbose', action='store_true', help=argparse.SUPPRESS)
common_parser.add_argument('--logConfig', help=argparse.SUPPRESS)
common_parser.add_argument('--profile', default=None)
common_parser.add_argument('--quiet', action='store_true', default=False)
common_parser.add_argument('--quiet', action='store_true', default=False, help=argparse.SUPPRESS)
parents = [common_parser]

subparsers = parser.add_subparsers(prog=parser.prog, title='usages', dest='command')
Expand Down

0 comments on commit c4507ec

Please sign in to comment.