diff options
author | Gauvain Pocentek <gauvain@pocentek.net> | 2016-02-05 14:16:19 +0100 |
---|---|---|
committer | Gauvain Pocentek <gauvain@pocentek.net> | 2016-02-05 14:16:19 +0100 |
commit | f5ca0ebe2baca508462a4835dfca33f7c5d02d29 (patch) | |
tree | 165ba869f05b16074e4b3905c39b6ba2d9d9a27a | |
parent | e387de528ad21766747b91bb7e1cd91f6e4642b5 (diff) | |
parent | 293a9dc9b086568a043040f07fdf1aa574a52500 (diff) | |
download | gitlab-f5ca0ebe2baca508462a4835dfca33f7c5d02d29.tar.gz |
Merge pull request #90 from ms-boom/fix_custom_list
fix GitlabObject creation in _custom_list
-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) |