diff options
author | Gauvain Pocentek <gauvain@pocentek.net> | 2018-01-01 15:30:24 +0100 |
---|---|---|
committer | Gauvain Pocentek <gauvain@pocentek.net> | 2018-01-01 15:30:24 +0100 |
commit | f5850d950a77b1d985fdc3d1639e2627468d3548 (patch) | |
tree | 908316276b55d8897ff0dcb6c30315bc6efa731d /gitlab/mixins.py | |
parent | c281d95c2f978d8d2eb1d77352babf5217d32062 (diff) | |
download | gitlab-f5850d950a77b1d985fdc3d1639e2627468d3548.tar.gz |
Add support for features flags
Fixes #360
Diffstat (limited to 'gitlab/mixins.py')
-rw-r--r-- | gitlab/mixins.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gitlab/mixins.py b/gitlab/mixins.py index 0c06f92..cb35efc 100644 --- a/gitlab/mixins.py +++ b/gitlab/mixins.py @@ -242,7 +242,7 @@ class SetMixin(object): GitlabSetError: If an error occured Returns: - UserCustomAttribute: The created/updated user attribute + obj: The created/updated attribute """ path = '%s/%s' % (self.path, key.replace('/', '%2F')) data = {'value': value} |