From 444a7f76f287996ae10fa9e6d800399feb698659 Mon Sep 17 00:00:00 2001 From: Nejc Habjan Date: Fri, 5 Nov 2021 21:01:58 +0100 Subject: refactor: use new-style formatting for named placeholders --- gitlab/v4/objects/jobs.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'gitlab/v4/objects/jobs.py') diff --git a/gitlab/v4/objects/jobs.py b/gitlab/v4/objects/jobs.py index 9bd35d0..9f0ad87 100644 --- a/gitlab/v4/objects/jobs.py +++ b/gitlab/v4/objects/jobs.py @@ -185,6 +185,6 @@ class ProjectJob(RefreshMixin, RESTObject): class ProjectJobManager(RetrieveMixin, RESTManager): - _path = "/projects/%(project_id)s/jobs" + _path = "/projects/{project_id}/jobs" _obj_cls = ProjectJob _from_parent_attrs = {"project_id": "id"} -- cgit v1.2.1