We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Duplicated code found in gitlab/config.py . I think one should be get from 'global'.
self.http_username = None self.http_password = None try: self.http_username = self._config.get(self.gitlab_id, "http_username") self.http_password = self._config.get(self.gitlab_id, "http_password") except Exception: pass self.http_username = None self.http_password = None try: self.http_username = self._config.get(self.gitlab_id, "http_username") self.http_password = self._config.get(self.gitlab_id, "http_password") except Exception: pass
The text was updated successfully, but these errors were encountered:
I will take a look soon.
Sorry, something went wrong.
fix(config): fix duplicate code
ee2df6f
Fixes #1094
max-wittig
Successfully merging a pull request may close this issue.
Description of the problem, including code/CLI snippet
Duplicated code found in gitlab/config.py . I think one should be get from 'global'.
Expected Behavior
Actual Behavior
Specifications
The text was updated successfully, but these errors were encountered: