From 7c59fac12fe69a1080cc227512e620ac5ae40b13 Mon Sep 17 00:00:00 2001 From: "John L. Villalovos" Date: Fri, 7 Jan 2022 20:03:43 -0800 Subject: [PATCH] chore: fix missing comma There was a missing comma which meant the strings were concatenated instead of being two separate strings. --- gitlab/v4/objects/services.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/gitlab/v4/objects/services.py b/gitlab/v4/objects/services.py index 4aa87cc16..632f002aa 100644 --- a/gitlab/v4/objects/services.py +++ b/gitlab/v4/objects/services.py @@ -179,7 +179,8 @@ class ProjectServiceManager(GetMixin, UpdateMixin, DeleteMixin, ListMixin, RESTM "wiki_page_events", "push_channel", "issue_channel", - "confidential_issue_channel" "merge_request_channel", + "confidential_issue_channel", + "merge_request_channel", "note_channel", "confidential_note_channel", "tag_push_channel",