diff options
Diffstat (limited to 'pomu/cli.py')
-rw-r--r-- | pomu/cli.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/pomu/cli.py b/pomu/cli.py index f9b40f0..bb3fe58 100644 --- a/pomu/cli.py +++ b/pomu/cli.py @@ -90,7 +90,7 @@ def import_cmd(package, patch): @click.argument('patch', type=click.Path(exists=True), nargs=-1, required=True) def patch(package): """Patch an existing package""" - category, name, *_ = cpv_split(package) + category, name, _ = cpv_split(package) pkg = pomu_active_repo().get_package(name=name, category=category).expect() pkg.patch(patch).expect() |