diff options
author | John L. Villalovos <john@sodarock.com> | 2022-01-07 20:03:43 -0800 |
---|---|---|
committer | John L. Villalovos <john@sodarock.com> | 2022-01-07 20:03:43 -0800 |
commit | 7c59fac12fe69a1080cc227512e620ac5ae40b13 (patch) | |
tree | a8061d7ce1c4d5ce759c73debd0ffa8963eb3154 | |
parent | 989634055b0c5ab622ac7774b546928a564a31ef (diff) | |
download | gitlab-jlvillal/missing_comma.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.py | 3 |
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", |