import ipaddress from _compat module

This commit is contained in:
Julien Cigar 2015-09-30 17:16:50 +02:00
parent 0e633156ae
commit dbe60d1ab1

View File

@ -14,10 +14,6 @@ from string import ascii_letters, digits
# Import 3rd-party libs
import salt.ext.six as six
if six.PY3:
import ipaddress
else:
import salt.ext.ipaddress as ipaddress
from salt.ext.six.moves import range # pylint: disable=import-error,redefined-builtin
# Attempt to import wmi
try:
@ -28,7 +24,7 @@ except ImportError:
# Import salt libs
import salt.utils
from salt._compat import subprocess
from salt._compat import subprocess, ipaddress
log = logging.getLogger(__name__)