diff options
author | Gauvain Pocentek <gauvain@pocentek.net> | 2013-02-16 08:52:35 +0100 |
---|---|---|
committer | Gauvain Pocentek <gauvain@pocentek.net> | 2013-02-16 08:52:35 +0100 |
commit | dd210bef3cd64e5e51fa36960b8148ad5bddbeb7 (patch) | |
tree | e6619dce023218bc5ca3bd1241a47875db07c906 /gitlab.py | |
parent | 96bf2b13299ebdc2e579117261c64d957405a78c (diff) | |
download | gitlab-dd210bef3cd64e5e51fa36960b8148ad5bddbeb7.tar.gz |
typo
Diffstat (limited to 'gitlab.py')
-rw-r--r-- | gitlab.py | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -66,7 +66,7 @@ class Gitlab(object): self.password = password def auth(self): - """Perform an authentication using either the private token, or the + """Performs an authentication using either the private token, or the email/password pair. The user attribute will hold a CurrentUser object on success. @@ -103,11 +103,11 @@ class Gitlab(object): self._url = '%s/api/v3' % url def setToken(self, token): - """Set the private token for authentication""" + """Sets the private token for authentication""" self.private_token = token def setCredentials(self, email, password): - """Set the email/login and password for authentication""" + """Sets the email/login and password for authentication""" self.email = email self.password = password |