diff options
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 a781cb1..0629753 100644 --- a/gitlab/objects.py +++ b/gitlab/objects.py @@ -163,7 +163,7 @@ class BaseManager(object): l = [] for j in r.json(): - o = cls(self, j) + o = cls(self.gitlab, j) o._from_api = True l.append(o) |