Commit 8809270
authored
Fix help message of
This is a bug fix.
When running `trlc -h`, the output now contains the following string:
> Do not print counter-examples and other supplemental information on
failed checks. The specific values of counter-examples are unpredictable
from system to system, so if you need perfectly reproducible output then
use this option.
Previously it was:
> Do not print counter-examples and other supplemental information on
failed checks. The specific values of counter-examples are unpredictable
from system to system, so if you need 100{'option_strings':
['--no-detailed-info'], 'dest': 'no_detailed_info', 'nargs': 0, 'const':
True, 'default': False, 'type': None, 'choices': None, 'required':
False, 'help': 'Do not print counter-examples and other supplemental
information on failed checks. The specific values of counter-examples
are unpredictable from system to system, so if you need 100%
reproducible output then use this option.', 'metavar': None,
'container': <argparse._ArgumentGroup object at 0x000001C1CD284910>,
'prog': 'trlc'}eproducible output then use this option.
The `%` character was causing the issue.--no-detailed-info (#128)1 parent a989306 commit 8809270
2 files changed
+4
-3
lines changed| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
27 | 27 | | |
28 | 28 | | |
29 | 29 | | |
30 | | - | |
| 30 | + | |
31 | 31 | | |
32 | 32 | | |
33 | 33 | | |
| |||
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
613 | 613 | | |
614 | 614 | | |
615 | 615 | | |
616 | | - | |
617 | | - | |
| 616 | + | |
| 617 | + | |
| 618 | + | |
618 | 619 | | |
619 | 620 | | |
620 | 621 | | |
| |||
0 commit comments