Skip to content

Commit 340cd37

Browse files
committed
fix repository_id marshaling in cli
1 parent 910c286 commit 340cd37

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

gitlab/v4/objects.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1194,7 +1194,7 @@ class ProjectRegistryTag(ObjectDeleteMixin, RESTObject):
11941194
class ProjectRegistryTagManager(DeleteMixin, RetrieveMixin, RESTManager):
11951195
_obj_cls = ProjectRegistryTag
11961196
_from_parent_attrs = {'project_id': 'project_id', 'repository_id': 'id'}
1197-
_path = '/projects/%(project_id)s/registry/repositories/%(repository_id)d/tags'
1197+
_path = '/projects/%(project_id)s/registry/repositories/%(repository_id)s/tags'
11981198

11991199
@exc.on_http_error(exc.GitlabDeleteError)
12001200
def delete_in_bulk(self, name_regex='.*', **kwargs):

0 commit comments

Comments
 (0)