Commit 5034a2c7 by Toshio Kuratomi

Use six to import urlparse

parent ed2e6fc8
......@@ -23,7 +23,8 @@ import os
import re
import shlex
import traceback
import urlparse
from six.moves.urllib import parse
try:
from winrm import Response
......@@ -90,7 +91,7 @@ class Connection(ConnectionBase):
else:
realm = None
endpoint = urlparse.urlunsplit((scheme, netloc, '/wsman', '', ''))
endpoint = parse.urlunsplit((scheme, netloc, '/wsman', '', ''))
self._display.vvvvv('WINRM CONNECT: transport=%s endpoint=%s' % (transport, endpoint), host=self._connection_info.remote_addr)
protocol = Protocol(
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment