renamed --silent switch --quiet

This commit is contained in:
2020-10-01 12:06:52 +02:00
parent 4bfe9c9c0f
commit b608b12432
5 changed files with 7 additions and 7 deletions

View File

@ -16,7 +16,7 @@ def handle_clargs():
parser_check = subparsers.add_parser("check", help="check a list of channels", formatter_class=argparse.ArgumentDefaultsHelpFormatter)
parser_check.add_argument("filename", help="name of input channel-list file")
parser_check.add_argument("-o", "--output", help="output CSV file", default=None)
parser_check.add_argument("-s", "--silent", help="do not show each channel's answer", action="store_true")
parser_check.add_argument("-q", "--quiet", help="do not show each channel's answer", action="store_true")
parser_check.add_argument("-t", "--timeout", help="connection timeout in seconds", type=float, default=1)
parser_compare = subparsers.add_parser("compare", help="compare two check results")