Align boolean option descriptions in configure.py
This commit is contained in:
parent
b27f33a4d9
commit
28fce83cc6
1 changed files with 2 additions and 1 deletions
|
@ -193,7 +193,8 @@ if '--help' in sys.argv or '-h' in sys.argv:
|
|||
if option.value:
|
||||
print('\t{:30} {}'.format('--{}=VAL'.format(option.name), option.desc))
|
||||
else:
|
||||
print('\t{:30} {}'.format('--enable-{} OR --disable-{}'.format(option.name, option.name), option.desc))
|
||||
print('\t--enable-{:25} OR --disable-{}'.format(option.name, option.name))
|
||||
print('\t\t' + option.desc)
|
||||
print('')
|
||||
print('This configure script is a thin configuration shim over the true')
|
||||
print('configuration system, `config.toml`. You can explore the comments')
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue