EOX GitLab Instance

Skip to content
Snippets Groups Projects
Commit 4cd242be authored by Bernhard Mallinger's avatar Bernhard Mallinger
Browse files

Fixed definition for click option `extra`

The `/`-syntax seems to only be valid for flags
parent 367f38e1
No related branches found
No related tags found
1 merge request!3Fix product type filtering
......@@ -61,7 +61,7 @@ def cli():
@click.option("--progress-set", type=str)
@click.option("--failure-set", type=str)
@click.option("--success-set", type=str)
@click.option("--extra/-e", type=str, multiple=True, default=[])
@click.option("-e", "--extra", type=str, multiple=True, default=[])
@click.option("--debug", is_flag=True)
def daemon(
config_file=None,
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment