Skip to content

Commit

Permalink
Support additional args
Browse files Browse the repository at this point in the history
  • Loading branch information
Ben Fortuna committed Dec 17, 2020
1 parent d32d610 commit 5f29015
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion bedrock/cli.py
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ def __init__(self):
for arg in unknown:
if arg.startswith(("-", "--")):
# store true for args without assignment
if arg.index('=') >= 0:
if "=" not in arg:
parser.add_argument(arg, action='store_true')
else:
parser.add_argument(arg)
Expand Down

0 comments on commit 5f29015

Please sign in to comment.