Fix import of urlparse on python3
Should fix the error reported here: https://github.com/ansible/ansible/issues/17495#issuecomment-267921719pull/4420/head
parent
e70bc06ea1
commit
4f960a4f42
|
@ -21,10 +21,10 @@ import re
|
|||
import json
|
||||
import sys
|
||||
import copy
|
||||
|
||||
from distutils.version import LooseVersion
|
||||
from urlparse import urlparse
|
||||
from ansible.module_utils.basic import *
|
||||
|
||||
from ansible.module_utils.basic import AnsibleModule, BOOLEANS_TRUE, BOOLEANS_FALSE
|
||||
from ansible.module_utils.six.moves.urllib.parse import urlparse
|
||||
|
||||
HAS_DOCKER_PY = True
|
||||
HAS_DOCKER_PY_2 = False
|
||||
|
|
Loading…
Reference in New Issue