mirror of
https://github.com/yuzu-emu/mbedtls.git
synced 2025-01-11 14:15:39 +00:00
Fix "--force set" without a value sneaking a None in
This commit is contained in:
parent
435ce22920
commit
0c7fcd210f
|
@ -361,7 +361,8 @@ if __name__ == '__main__':
|
||||||
found, unless --force is passed.
|
found, unless --force is passed.
|
||||||
""")
|
""")
|
||||||
parser_set.add_argument('symbol', metavar='SYMBOL')
|
parser_set.add_argument('symbol', metavar='SYMBOL')
|
||||||
parser_set.add_argument('value', metavar='VALUE', nargs='?')
|
parser_set.add_argument('value', metavar='VALUE', nargs='?',
|
||||||
|
default='')
|
||||||
parser_unset = subparsers.add_parser('unset',
|
parser_unset = subparsers.add_parser('unset',
|
||||||
help="""Comment out the #define
|
help="""Comment out the #define
|
||||||
for SYMBOL. Do nothing if none
|
for SYMBOL. Do nothing if none
|
||||||
|
|
Loading…
Reference in a new issue