diff options
author | Karol Ossowski <karol.ossowski@gmail.com> | 2019-04-23 11:27:31 +0200 |
---|---|---|
committer | Karol Ossowski <karol.ossowski@gmail.com> | 2019-05-01 22:45:39 +0200 |
commit | 340cd370000bbb48b81a5b7c1a7bf9f33997cef9 (patch) | |
tree | 02d49e1c7d3138d91f2e4d979b70fed1883a9dd0 /gitlab/v4/objects.py | |
parent | 910c2861a3c895cca5aff0a0df1672bb7388c526 (diff) | |
download | gitlab-340cd370000bbb48b81a5b7c1a7bf9f33997cef9.tar.gz |
fix repository_id marshaling in cli
Diffstat (limited to 'gitlab/v4/objects.py')
-rw-r--r-- | gitlab/v4/objects.py | 2 |
1 files changed, 1 insertions, 1 deletions
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): |