We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f6de8ae commit 7e41eb4Copy full SHA for 7e41eb4
wscript
@@ -2,6 +2,7 @@
2
# encoding: utf-8
3
# flake8: noqa
4
5
+import optparse
6
import os.path
7
import os
8
import sys
@@ -118,13 +119,13 @@ def add_build_options(g):
118
119
g.add_option(lower_enable_option,
120
action='store_true',
121
default=False,
- help=enable_description)
122
+ help=optparse.SUPPRESS_HELP)
123
lower_disable_option = disable_option.lower().replace("_", "-")
124
if lower_disable_option != disable_option:
125
g.add_option(lower_disable_option,
126
127
- help=disable_description)
128
129
130
def add_script_options(g):
131
'''add any drivers or applets from libraries/AP_Scripting'''
0 commit comments