Some beginning python3 porting for modules which have unittests

This commit is contained in:
Toshio Kuratomi 2016-04-27 07:17:05 -07:00 committed by Matt Clay
parent 8397c8169c
commit 5f0dc2b90f
2 changed files with 10 additions and 3 deletions

View file

@ -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