Fix multiple=True for components in issues

This commit is contained in:
MasterofJOKers 2022-09-20 22:56:10 +02:00
parent 57afd1c82b
commit 471855beb6
1 changed files with 1 additions and 1 deletions

View File

@ -90,7 +90,7 @@ def version(client):
@main.command()
@click.option('--project', help='Project to filter for. Default: take from config [filters]/default_project')
@click.option('--component', 'components', help='Filter for issues with *any* of the given components')
@click.option('--component', 'components', multiple=True, help='Filter for issues with *any* of the given components')
@click.option('--status', multiple=True, help='Filter for issues with *any* of the given statuses')
@click.option('--label', 'labels', multiple=True, help='Filter for issues with all the given labels')
@click.option('--text', 'texts', multiple=True, help='Filter for issues containing all the given strings')