diff options
Diffstat (limited to 'gitlab/v4/objects/merge_trains.py')
-rw-r--r-- | gitlab/v4/objects/merge_trains.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gitlab/v4/objects/merge_trains.py b/gitlab/v4/objects/merge_trains.py index d66c993..9f8e1df 100644 --- a/gitlab/v4/objects/merge_trains.py +++ b/gitlab/v4/objects/merge_trains.py @@ -12,7 +12,7 @@ class ProjectMergeTrain(RESTObject): class ProjectMergeTrainManager(ListMixin, RESTManager): - _path = "/projects/%(project_id)s/merge_trains" + _path = "/projects/{project_id}/merge_trains" _obj_cls = ProjectMergeTrain _from_parent_attrs = {"project_id": "id"} _list_filters = ("scope",) |