summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPeter Mosmans <support@go-forward.net>2016-05-31 12:15:11 +1000
committerPeter Mosmans <support@go-forward.net>2016-05-31 12:15:11 +1000
commit40d796988171967570d485d7ab709ad6ea466ecf (patch)
tree86e2810deb442e452a911389c46e770d4173f3d9
parent59ed4fc07947d80352f1656c5d8a280cddec8b0f (diff)
downloadgitlab-40d796988171967570d485d7ab709ad6ea466ecf.tar.gz
pylint fix
-rw-r--r--gitlab/__init__.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/gitlab/__init__.py b/gitlab/__init__.py
index 28c5a17..c42acaf 100644
--- a/gitlab/__init__.py
+++ b/gitlab/__init__.py
@@ -581,8 +581,8 @@ class Gitlab(object):
verify=self.ssl_verify,
timeout=self.timeout,
auth=requests.auth.HTTPBasicAuth(
- self.http_username,
- self.http_password))
+ self.http_username,
+ self.http_password))
except Exception as e:
raise GitlabConnectionError(
"Can't connect to GitLab server (%s)" % e)