From e2eb8a1f4154b27550746a76c98309280e1f02db Mon Sep 17 00:00:00 2001 From: tastytea Date: Tue, 6 Aug 2019 18:38:03 +0200 Subject: [PATCH] Removed erroneous newline in --help output. --- src/cli/parse_options.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/cli/parse_options.cpp b/src/cli/parse_options.cpp index 4a804fe..617fa04 100644 --- a/src/cli/parse_options.cpp +++ b/src/cli/parse_options.cpp @@ -186,7 +186,7 @@ void App::print_help() HelpFormatter helpFormatter(options()); helpFormatter.setCommand(commandName()); helpFormatter.setUsage("[-t tags] [-N] URI\n" - "-e format [-f file] [-T start,end]\n" + "-e format [-f file] [-T start,end] " "[[-s|-S] expression] [-r]"); helpFormatter.format(cout); }