diff options
author | John L. Villalovos <debian.org@sodarock.com> | 2021-02-23 14:03:15 -0800 |
---|---|---|
committer | John L. Villalovos <debian.org@sodarock.com> | 2021-02-23 14:04:18 -0800 |
commit | 48ec9e0f6a2d2da0a24ef8292c70dc441836a913 (patch) | |
tree | 112c4a8be74592f5f974ee6ac9ebfad367583c2f /gitlab/v4/objects/ldap.py | |
parent | d90be1e6ed5b27e02e00cffec25317bef413fec4 (diff) | |
download | gitlab-48ec9e0f6a2d2da0a24ef8292c70dc441836a913.tar.gz |
fix: undefined name errors
Discovered that there were some undefined names.
Diffstat (limited to 'gitlab/v4/objects/ldap.py')
-rw-r--r-- | gitlab/v4/objects/ldap.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gitlab/v4/objects/ldap.py b/gitlab/v4/objects/ldap.py index 5355aaf..e6ff42a 100644 --- a/gitlab/v4/objects/ldap.py +++ b/gitlab/v4/objects/ldap.py @@ -50,4 +50,4 @@ class LDAPGroupManager(RESTManager): if isinstance(obj, list): return [self._obj_cls(self, item) for item in obj] else: - return base.RESTObjectList(self, self._obj_cls, obj) + return RESTObjectList(self, self._obj_cls, obj) |