Skip to content

Commit

Permalink
Merge pull request #586 from Halliburton-Landmark/project-issue-creat…
Browse files Browse the repository at this point in the history
…e-args

add missing comma in ProjectIssueManager _create_attrs
  • Loading branch information
Gauvain Pocentek committed Sep 11, 2018
2 parents 9e60364 + 83fb4f9 commit 58d5c0a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions gitlab/v4/objects.py
Expand Up @@ -1862,8 +1862,8 @@ class ProjectIssueManager(CRUDMixin, RESTManager):
'order_by', 'sort', 'search', 'created_after',
'created_before', 'updated_after', 'updated_before')
_create_attrs = (('title', ),
('description', 'confidential', 'assignee_id',
'assignee_idss' 'milestone_id', 'labels', 'created_at',
('description', 'confidential', 'assignee_ids',
'assignee_id', 'milestone_id', 'labels', 'created_at',
'due_date', 'merge_request_to_resolve_discussions_of',
'discussion_to_resolve'))
_update_attrs = (tuple(), ('title', 'description', 'confidential',
Expand Down

0 comments on commit 58d5c0a

Please sign in to comment.