diff options
author | Gauvain Pocentek <gauvain@pocentek.net> | 2017-05-27 08:19:21 +0200 |
---|---|---|
committer | Gauvain Pocentek <gauvain@pocentek.net> | 2017-05-27 08:19:21 +0200 |
commit | f733ffb1c1ac2243c14c660bfac98443c1a7e67c (patch) | |
tree | 2e9eba08b9f0aca16c2414a54d244a340895548a /gitlab/base.py | |
parent | 1ab9ff06027a478ebedb7840db71cd308da65161 (diff) | |
download | gitlab-f733ffb1c1ac2243c14c660bfac98443c1a7e67c.tar.gz |
Fix python functional tests
Diffstat (limited to 'gitlab/base.py')
-rw-r--r-- | gitlab/base.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gitlab/base.py b/gitlab/base.py index aa660b2..0d82cf1 100644 --- a/gitlab/base.py +++ b/gitlab/base.py @@ -431,7 +431,7 @@ class GitlabObject(object): self._set_manager(var, cls, attrs) return getattr(self, var) - raise AttributeError + raise AttributeError(name) def __str__(self): return '%s => %s' % (type(self), str(self.__dict__)) |