mirror of
https://github.com/ansible-collections/community.general.git
synced 2026-05-07 05:42:50 +00: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:
@@ -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
|
||||
|
||||
Reference in New Issue
Block a user