We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent fb73ede commit 52787b3Copy full SHA for 52787b3
1 file changed
command_line.py
@@ -9,10 +9,10 @@
9
10
$ python3.4 command_line.py --help
11
12
- for more information on all of the available options and usage instructions. An full
+ for more information on all of the available options and usage instructions. A full
13
example might be:
14
15
- $ python3.4 command_line.py
+ $ python3.4 command_line.py --main index.html --export-to=mac-x64 ~/Projects/MyProject/
16
17
"""
18
@@ -1469,7 +1469,8 @@ def generate_setting_args(command_base, parser):
1469
parser.add_argument(
1470
'--{}'.format(option_name),
1471
dest=setting_name,
1472
- help=setting.description,
+ # Ignore any percent signs in the description.
1473
+ help=setting.description.replace('%', '%%'),
1474
**kwargs
1475
)
1476
0 commit comments