From 04c9621c7e816cebec195f6c8d99949c1f6e99b9 Mon Sep 17 00:00:00 2001 From: _Frky <3105926+Frky@users.noreply.github.com> Date: Thu, 20 Oct 2022 17:49:36 +0200 Subject: [PATCH] Fix clap default options since last update --- src/masscanned.rs | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/masscanned.rs b/src/masscanned.rs index 189b756..59651b0 100644 --- a/src/masscanned.rs +++ b/src/masscanned.rs @@ -143,7 +143,8 @@ fn main() { Arg::new("quiet") .long("quiet") .short('q') - .help("Quiet mode: do not output anything on stdout"), + .help("Quiet mode: do not output anything on stdout") + .num_args(0), ) .arg( Arg::new("format")