diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index eccc5206..374b880f 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -7,7 +7,7 @@ jobs: - uses: actions/checkout@v3 - uses: actions/setup-python@v2 with: - python-version: '3.6' + python-version: '3.10' - name: Install requirements run: pip install flake8 pycodestyle - name: Check syntax diff --git a/ckanext/archiver/cli.py b/ckanext/archiver/cli.py index 53adb4d9..a05198e3 100644 --- a/ckanext/archiver/cli.py +++ b/ckanext/archiver/cli.py @@ -12,7 +12,7 @@ def archiver(): @archiver.command() -@click.option('-q', '--queue') +@click.option('-q', '--queue', default='bulk') @click.argument('identifiers', nargs=-1) def update(identifiers, queue): utils.update(identifiers, queue)