diff options
author | godaji <sipqko@gmail.com> | 2019-10-04 14:14:35 +0900 |
---|---|---|
committer | godaji <sipqko@gmail.com> | 2019-10-06 08:41:02 +0900 |
commit | c7ff676c11303a00da3a570bf2893717d0391f20 (patch) | |
tree | 3d8a784fe19fef852a3b64f619b0a6afc0273a99 /gitlab/config.py | |
parent | ba2b60e32c12cacf18762a286d05e073529b9898 (diff) | |
download | gitlab-c7ff676c11303a00da3a570bf2893717d0391f20.tar.gz |
refactor: remove unused code, simplify string format
Diffstat (limited to 'gitlab/config.py')
-rw-r--r-- | gitlab/config.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gitlab/config.py b/gitlab/config.py index 67301a0..4b4d6fd 100644 --- a/gitlab/config.py +++ b/gitlab/config.py @@ -63,7 +63,7 @@ class GitlabConfigParser(object): self.gitlab_id = self._config.get("global", "default") except Exception: raise GitlabIDError( - "Impossible to get the gitlab id " "(not specified in config file)" + "Impossible to get the gitlab id (not specified in config file)" ) try: |