Skip to content
New issue

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

pylint: fix missing module on F27+ #1085

Closed
wants to merge 1 commit into from
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
6 changes: 4 additions & 2 deletions ipaserver/secrets/client.py
Expand Up @@ -13,6 +13,7 @@
import ldapurl
import gssapi
import os
import urllib3
import requests


Expand Down Expand Up @@ -65,8 +66,9 @@ def __init__(

self.keystore = self._keystore(realm, ldap_uri, auth_type)

# FIXME: Remove warnings about missig subjAltName
requests.packages.urllib3.disable_warnings()
# FIXME: Remove warnings about missing subjAltName for the
# requests module
urllib3.disable_warnings()

def init_creds(self):
name = gssapi.Name(self.client_service,
Expand Down