mirror of
https://github.com/ansible-collections/community.general.git
synced 2026-05-06 13:22:48 +00:00
Some beginning python3 porting for modules which have unittests
This commit is contained in:
committed by
Matt Clay
parent
8397c8169c
commit
5f0dc2b90f
@@ -528,7 +528,12 @@ import sys
|
||||
import json
|
||||
import os
|
||||
import shlex
|
||||
from urlparse import urlparse
|
||||
try:
|
||||
from urlparse import urlparse
|
||||
except ImportError:
|
||||
# python3
|
||||
from urllib.parse import urlparse
|
||||
|
||||
try:
|
||||
import docker.client
|
||||
import docker.utils
|
||||
|
||||
Reference in New Issue
Block a user