diff options
author | Peter Mosmans <support@go-forward.net> | 2016-05-31 12:15:11 +1000 |
---|---|---|
committer | Peter Mosmans <support@go-forward.net> | 2016-05-31 12:15:11 +1000 |
commit | 40d796988171967570d485d7ab709ad6ea466ecf (patch) | |
tree | 86e2810deb442e452a911389c46e770d4173f3d9 | |
parent | 59ed4fc07947d80352f1656c5d8a280cddec8b0f (diff) | |
download | gitlab-40d796988171967570d485d7ab709ad6ea466ecf.tar.gz |
pylint fix
-rw-r--r-- | gitlab/__init__.py | 4 |
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) |