Skip to content

Commit 28fce83

Browse files
committed
Align boolean option descriptions in configure.py
1 parent b27f33a commit 28fce83

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

src/bootstrap/configure.py

+2-1
Original file line numberDiff line numberDiff line change
@@ -193,7 +193,8 @@ def is_value_list(key):
193193
if option.value:
194194
print('\t{:30} {}'.format('--{}=VAL'.format(option.name), option.desc))
195195
else:
196-
print('\t{:30} {}'.format('--enable-{} OR --disable-{}'.format(option.name, option.name), option.desc))
196+
print('\t--enable-{:25} OR --disable-{}'.format(option.name, option.name))
197+
print('\t\t' + option.desc)
197198
print('')
198199
print('This configure script is a thin configuration shim over the true')
199200
print('configuration system, `config.toml`. You can explore the comments')

0 commit comments

Comments
 (0)