Skip to content

Commit 58d5c0a

Browse files
author
Gauvain Pocentek
authored
Merge pull request #586 from Halliburton-Landmark/project-issue-create-args
add missing comma in ProjectIssueManager _create_attrs
2 parents 9e60364 + 83fb4f9 commit 58d5c0a

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

gitlab/v4/objects.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1862,8 +1862,8 @@ class ProjectIssueManager(CRUDMixin, RESTManager):
18621862
'order_by', 'sort', 'search', 'created_after',
18631863
'created_before', 'updated_after', 'updated_before')
18641864
_create_attrs = (('title', ),
1865-
('description', 'confidential', 'assignee_id',
1866-
'assignee_idss' 'milestone_id', 'labels', 'created_at',
1865+
('description', 'confidential', 'assignee_ids',
1866+
'assignee_id', 'milestone_id', 'labels', 'created_at',
18671867
'due_date', 'merge_request_to_resolve_discussions_of',
18681868
'discussion_to_resolve'))
18691869
_update_attrs = (tuple(), ('title', 'description', 'confidential',

0 commit comments

Comments
 (0)