summaryrefslogtreecommitdiff
path: root/gitlab.py
diff options
context:
space:
mode:
authorGauvain Pocentek <gauvain@pocentek.net>2013-02-16 08:52:35 +0100
committerGauvain Pocentek <gauvain@pocentek.net>2013-02-16 08:52:35 +0100
commitdd210bef3cd64e5e51fa36960b8148ad5bddbeb7 (patch)
treee6619dce023218bc5ca3bd1241a47875db07c906 /gitlab.py
parent96bf2b13299ebdc2e579117261c64d957405a78c (diff)
downloadgitlab-dd210bef3cd64e5e51fa36960b8148ad5bddbeb7.tar.gz
typo
Diffstat (limited to 'gitlab.py')
-rw-r--r--gitlab.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/gitlab.py b/gitlab.py
index d417eae..b20dadd 100644
--- a/gitlab.py
+++ b/gitlab.py
@@ -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