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("=")
|
||||
options[k.lstrip('--')] = v
|
||||
else:
|
||||
options[arg.lstrip('--')] = True
|
||||
options[arg.lstrip('--').replace("-", "_")] = True
|
||||
else:
|
||||
command = arg
|
||||
break
|
||||
|
|
Loading…
Reference in a new issue