summaryrefslogtreecommitdiff
path: root/gitlab.py
diff options
context:
space:
mode:
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