fix --debug_logging cli argument
This commit is contained in:
parent
7ab12ef9a9
commit
5a6be06cb5
1 changed files with 1 additions and 1 deletions
|
@ -86,7 +86,7 @@ def main(argv: typing.Optional[typing.List[typing.Optional[str]]] = None,
|
||||||
k, v = arg.split("=")
|
k, v = arg.split("=")
|
||||||
options[k.lstrip('--')] = v
|
options[k.lstrip('--')] = v
|
||||||
else:
|
else:
|
||||||
options[arg.lstrip('--')] = True
|
options[arg.lstrip('--').replace("-", "_")] = True
|
||||||
else:
|
else:
|
||||||
command = arg
|
command = arg
|
||||||
break
|
break
|
||||||
|
|
Loading…
Reference in a new issue