Skip to content
This repository has been archived by the owner on May 12, 2021. It is now read-only.

LENS-1517: Fix urlparse import in auth.py #24

Open
wants to merge 2 commits into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 4 additions & 1 deletion contrib/clients/python/lens/client/auth.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,11 +14,14 @@
# See the License for the specific language governing permissions and
# limitations under the License.
#
from future.standard_library import install_aliases
install_aliases()

import kerberos
from requests.auth import AuthBase
import subprocess
import threading
from urlparse import urlparse
from urllib.parse import urlparse


class SpnegoAuth(AuthBase):
Expand Down