From 02a8bf4a6fd3daceac60a869a66a014824bcad43 Mon Sep 17 00:00:00 2001 From: derek-austin Date: Tue, 13 Sep 2016 12:55:14 +0200 Subject: [PATCH] Missing coma concatenates array values 'enabled_git_access_protocolgravatar_enabled' were two distinct values in ApplicationSettings.optionalUpdateAttrs. --- gitlab/objects.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gitlab/objects.py b/gitlab/objects.py index bafd0e5bb..660641634 100644 --- a/gitlab/objects.py +++ b/gitlab/objects.py @@ -689,7 +689,7 @@ class ApplicationSettings(GitlabObject): 'domain_blacklist', 'domain_blacklist_enabled', 'domain_whitelist', - 'enabled_git_access_protocol' + 'enabled_git_access_protocol', 'gravatar_enabled', 'home_page_url', 'max_attachment_size',