diff options
author | Max Wittig <max.wittig@siemens.com> | 2018-11-23 13:08:30 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-11-23 13:08:30 +0100 |
commit | 011274e7f94519d30dee59f5448215838d058e37 (patch) | |
tree | be7d87a75c209ec6e71d576affe3d16a6f8003bf | |
parent | e6df9a8b2f9c2397ea3ae67dfe19a2fa91f41c19 (diff) | |
parent | bb251b8ef780216de03dde67912ad5fffbb30390 (diff) | |
download | gitlab-011274e7f94519d30dee59f5448215838d058e37.tar.gz |
Merge pull request #639 from python-gitlab/fix/628/doc_typo
[docs] Fix typo in custom attributes example
-rw-r--r-- | docs/gl_objects/users.rst | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/gl_objects/users.rst b/docs/gl_objects/users.rst index 9a0bbf5..d86d2ed 100644 --- a/docs/gl_objects/users.rst +++ b/docs/gl_objects/users.rst @@ -112,7 +112,7 @@ Delete a custom attribute for a user:: Search users by custom attribute:: - user.customattributes.set('role': 'QA') + user.customattributes.set('role', 'QA') gl.users.list(custom_attributes={'role': 'QA'}) User impersonation tokens |