diff options
author | Gauvain Pocentek <gauvain@pocentek.net> | 2018-05-28 14:30:34 +0200 |
---|---|---|
committer | Gauvain Pocentek <gauvain@pocentek.net> | 2018-05-28 14:30:34 +0200 |
commit | 8374bcc341eadafb8c7fbb2920d7f001a5a43b63 (patch) | |
tree | 84ee003363840e451c2a1f7a205b700b5533ecbb /gitlab/v4/objects.py | |
parent | e901f440d787c1fd43fdba1838a1f37066329ccf (diff) | |
download | gitlab-8374bcc341eadafb8c7fbb2920d7f001a5a43b63.tar.gz |
Fix the participants() decorator
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 2be505e..e4c503f 100644 --- a/gitlab/v4/objects.py +++ b/gitlab/v4/objects.py @@ -1505,7 +1505,7 @@ class ProjectIssueManager(CRUDMixin, RESTManager): _create_attrs = (('title', ), ('description', 'confidential', 'assignee_id', 'assignee_idss' 'milestone_id', 'labels', 'created_at', - 'due_date', 'merge_request_to_resolve_discussions_of' , + 'due_date', 'merge_request_to_resolve_discussions_of', 'discussion_to_resolve')) _update_attrs = (tuple(), ('title', 'description', 'confidential', 'assignee_ids', 'assignee_id', 'milestone_id', |