From d3a1ca46e3e7fc42be364e9e168b7d5393efb77d Mon Sep 17 00:00:00 2001 From: Sven Augustin Date: Mon, 2 Nov 2020 20:22:07 +0100 Subject: [PATCH] updated timeout help --- sani.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sani.py b/sani.py index 90ba959..fe56a6b 100755 --- a/sani.py +++ b/sani.py @@ -28,7 +28,7 @@ def handle_clargs(): parser_goto.add_argument("filename", help="name of input CSV file") parser_goto.add_argument("-q", "--quiet", help="do not show each channel's answer", action="store_true") parser_goto.add_argument("-s", "--serial", help="do not run checks in parallel", action="store_true") - parser_goto.add_argument("-t", "--timeout", help="connection timeout in seconds", type=float, default=1) + parser_goto.add_argument("-t", "--timeout", help="connection and put completion timeout in seconds", type=float, default=1) clargs = parser.parse_args()