Skip to content

Commit 8809270

Browse files
authored
Fix help message of --no-detailed-info (#128)
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.
1 parent a989306 commit 8809270

File tree

2 files changed

+4
-3
lines changed

2 files changed

+4
-3
lines changed

CHANGELOG.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ generated in the following situations:
2727

2828
### 2.0.2-dev
2929

30-
30+
* [TRLC] Fix help message for command line argument `--no-detailed-info`.
3131

3232
### 2.0.1
3333

trlc/trlc.py

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -613,8 +613,9 @@ def trlc():
613613
" supplemental information on failed"
614614
" checks. The specific values of"
615615
" counter-examples are unpredictable"
616-
" from system to system, so if you need 100%"
617-
" reproducible output then use this option."))
616+
" from system to system, so if you need"
617+
" perfectly reproducible output then use"
618+
" this option."))
618619
og_output.add_argument("--no-user-warnings",
619620
default=False,
620621
action="store_true",

0 commit comments

Comments
 (0)