diff options
author | Justin <justin.georgeson@halliburton.com> | 2018-09-10 13:49:18 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-09-10 13:49:18 -0500 |
commit | 83fb4f9ec5f60a122fe9db26c426be74c335e5d5 (patch) | |
tree | bb455e7f072ba656661d6a24582466a9e899fc03 /gitlab/v4/objects.py | |
parent | 9e60364306a894855c8e0744ed4b93cec8ea9ad0 (diff) | |
download | gitlab-83fb4f9ec5f60a122fe9db26c426be74c335e5d5.tar.gz |
add missing comma in ProjectIssueManager _create_attrs
This fixes the argument handling for assignee/milestone ID when for `project-issue create`
Diffstat (limited to 'gitlab/v4/objects.py')
-rw-r--r-- | gitlab/v4/objects.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gitlab/v4/objects.py b/gitlab/v4/objects.py index bd7635f..1d771ae 100644 --- a/gitlab/v4/objects.py +++ b/gitlab/v4/objects.py @@ -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', |