Fixed bug with 'explainonly' argument.
This commit is contained in:
parent
beaeaf26e8
commit
433c0b8749
1 changed files with 2 additions and 1 deletions
|
@ -45,7 +45,7 @@ sub usage {
|
||||||
" --nobad Remove negative/suggestion responses\n".
|
" --nobad Remove negative/suggestion responses\n".
|
||||||
" --noinfo Remove informational responses\n".
|
" --noinfo Remove informational responses\n".
|
||||||
" --notitle Remove section title headers\n".
|
" --notitle Remove section title headers\n".
|
||||||
" --withexplain Add verbose explanations\n".
|
" --withexplain Add verbose explanations\n".
|
||||||
" --explainonly Provide only long text explanations, no bullets/titles\n".
|
" --explainonly Provide only long text explanations, no bullets/titles\n".
|
||||||
" --nocolor Don't print output in color\n".
|
" --nocolor Don't print output in color\n".
|
||||||
"\n";
|
"\n";
|
||||||
|
@ -69,6 +69,7 @@ if ($opt{explainonly} == 1) {
|
||||||
$opt{noinfo} = 1;
|
$opt{noinfo} = 1;
|
||||||
$opt{nobad} = 1;
|
$opt{nobad} = 1;
|
||||||
$opt{notitle} = 1;
|
$opt{notitle} = 1;
|
||||||
|
$opt{withexplain} = 1;
|
||||||
}
|
}
|
||||||
|
|
||||||
sub goodprint {
|
sub goodprint {
|
||||||
|
|
Loading…
Reference in a new issue