diff options
author | derek-austin <derek.austin35@mailinator.com> | 2016-09-13 12:55:14 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2016-09-13 12:55:14 +0200 |
commit | 02a8bf4a6fd3daceac60a869a66a014824bcad43 (patch) | |
tree | 606782585dd1b291f04068b46edc723afb96eff7 /gitlab/objects.py | |
parent | 53f93225ebb571f1c283ec848959975e3815e4ad (diff) | |
download | gitlab-02a8bf4a6fd3daceac60a869a66a014824bcad43.tar.gz |
Missing coma concatenates array values
'enabled_git_access_protocolgravatar_enabled' were two distinct values in ApplicationSettings.optionalUpdateAttrs.
Diffstat (limited to 'gitlab/objects.py')
-rw-r--r-- | gitlab/objects.py | 2 |
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', |