summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJohn L. Villalovos <john@sodarock.com>2022-01-07 20:03:43 -0800
committerJohn L. Villalovos <john@sodarock.com>2022-01-07 20:03:43 -0800
commit7c59fac12fe69a1080cc227512e620ac5ae40b13 (patch)
treea8061d7ce1c4d5ce759c73debd0ffa8963eb3154
parent989634055b0c5ab622ac7774b546928a564a31ef (diff)
downloadgitlab-7c59fac12fe69a1080cc227512e620ac5ae40b13.tar.gz
chore: fix missing commajlvillal/missing_comma
There was a missing comma which meant the strings were concatenated instead of being two separate strings.
-rw-r--r--gitlab/v4/objects/services.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/gitlab/v4/objects/services.py b/gitlab/v4/objects/services.py
index 4aa87cc..632f002 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",