Skip to content

Commit

Permalink
Refine cli formatter to properly show flags in command line help
Browse files Browse the repository at this point in the history
  • Loading branch information
lczech committed Jan 16, 2022
1 parent 1a6b432 commit 928cc7c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/tools/cli_formatter.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ class GappaFormatter : public CLI::Formatter
{
auto res = CLI::Formatter::make_option_opts( opt );
if(opt->get_type_size() == 0) {
res = "FLAG " + res;
res = " FLAG " + res;
}
return res;
}
Expand Down

0 comments on commit 928cc7c

Please sign in to comment.