summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--gitlab/v4/objects.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/gitlab/v4/objects.py b/gitlab/v4/objects.py
index 81c7078..8dc6171 100644
--- a/gitlab/v4/objects.py
+++ b/gitlab/v4/objects.py
@@ -1582,7 +1582,7 @@ class ProjectIssue(UserAgentDetailMixin, SubscribableMixin, TodoMixin,
class ProjectIssueManager(CRUDMixin, RESTManager):
- _path = '/projects/%(project_id)s/issues/'
+ _path = '/projects/%(project_id)s/issues'
_obj_cls = ProjectIssue
_from_parent_attrs = {'project_id': 'id'}
_list_filters = ('iids', 'state', 'labels', 'milestone', 'scope',