summaryrefslogtreecommitdiff
path: root/gitlab/base.py
diff options
context:
space:
mode:
authorGauvain Pocentek <gauvain@pocentek.net>2017-05-28 09:42:07 +0200
committerGauvain Pocentek <gauvain@pocentek.net>2017-06-02 15:41:37 +0200
commit9fbdb9461a660181a3a268cd398865cafd0b4a89 (patch)
treea95b1f97eff3ca2c5bc6d64cc20b19476f335d9c /gitlab/base.py
parentfb5782e691a11aad35e57f55af139ec4b951a225 (diff)
downloadgitlab-9fbdb9461a660181a3a268cd398865cafd0b4a89.tar.gz
pep8
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 ee54f2a..2ecf1d2 100644
--- a/gitlab/base.py
+++ b/gitlab/base.py
@@ -595,7 +595,7 @@ class RESTObject(object):
return '%s => %s' % (type(self), data)
def __repr__(self):
- if self._id_attr :
+ if self._id_attr:
return '<%s %s:%s>' % (self.__class__.__name__,
self._id_attr,
self.get_id())