mirror of
https://github.com/ansible-collections/community.general.git
synced 2025-07-27 15:11:23 -07:00
Fix import of urlparse on python3
Should fix the error reported here: https://github.com/ansible/ansible/issues/17495#issuecomment-267921719
This commit is contained in:
parent
e70bc06ea1
commit
4f960a4f42
1 changed files with 3 additions and 3 deletions
|
@ -21,10 +21,10 @@ import re
|
||||||
import json
|
import json
|
||||||
import sys
|
import sys
|
||||||
import copy
|
import copy
|
||||||
|
|
||||||
from distutils.version import LooseVersion
|
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 = True
|
||||||
HAS_DOCKER_PY_2 = False
|
HAS_DOCKER_PY_2 = False
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue