From 340cd370000bbb48b81a5b7c1a7bf9f33997cef9 Mon Sep 17 00:00:00 2001 From: Karol Ossowski Date: Tue, 23 Apr 2019 11:27:31 +0200 Subject: fix repository_id marshaling in cli --- gitlab/v4/objects.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'gitlab') diff --git a/gitlab/v4/objects.py b/gitlab/v4/objects.py index 0b98851..f494cc1 100644 --- a/gitlab/v4/objects.py +++ b/gitlab/v4/objects.py @@ -1194,7 +1194,7 @@ class ProjectRegistryTag(ObjectDeleteMixin, RESTObject): class ProjectRegistryTagManager(DeleteMixin, RetrieveMixin, RESTManager): _obj_cls = ProjectRegistryTag _from_parent_attrs = {'project_id': 'project_id', 'repository_id': 'id'} - _path = '/projects/%(project_id)s/registry/repositories/%(repository_id)d/tags' + _path = '/projects/%(project_id)s/registry/repositories/%(repository_id)s/tags' @exc.on_http_error(exc.GitlabDeleteError) def delete_in_bulk(self, name_regex='.*', **kwargs): -- cgit v1.2.1