summaryrefslogtreecommitdiff
path: root/gitlab/base.py
diff options
context:
space:
mode:
authorGauvain Pocentek <gauvain@pocentek.net>2017-05-27 08:19:21 +0200
committerGauvain Pocentek <gauvain@pocentek.net>2017-05-27 08:19:21 +0200
commitf733ffb1c1ac2243c14c660bfac98443c1a7e67c (patch)
tree2e9eba08b9f0aca16c2414a54d244a340895548a /gitlab/base.py
parent1ab9ff06027a478ebedb7840db71cd308da65161 (diff)
downloadgitlab-f733ffb1c1ac2243c14c660bfac98443c1a7e67c.tar.gz
Fix python functional tests
Diffstat (limited to 'gitlab/base.py')
-rw-r--r--gitlab/base.py2
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__))