summaryrefslogtreecommitdiff
path: root/gitlab
diff options
context:
space:
mode:
authorderek-austin <derek.austin35@mailinator.com>2016-09-13 12:55:14 +0200
committerGitHub <noreply@github.com>2016-09-13 12:55:14 +0200
commit02a8bf4a6fd3daceac60a869a66a014824bcad43 (patch)
tree606782585dd1b291f04068b46edc723afb96eff7 /gitlab
parent53f93225ebb571f1c283ec848959975e3815e4ad (diff)
downloadgitlab-02a8bf4a6fd3daceac60a869a66a014824bcad43.tar.gz
Missing coma concatenates array values
'enabled_git_access_protocolgravatar_enabled' were two distinct values in ApplicationSettings.optionalUpdateAttrs.
Diffstat (limited to 'gitlab')
-rw-r--r--gitlab/objects.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/gitlab/objects.py b/gitlab/objects.py
index bafd0e5..6606416 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',