Py3 for integration test

This commit is contained in:
Mike Place 2016-06-30 09:10:43 -06:00
parent 51a4f09b93
commit cd959c640f

View File

@ -31,6 +31,10 @@ try:
import pwd
except ImportError:
pass
try:
import salt.ext.six.moves.socketserver as socketserver
except ImportError:
import socketserver
STATE_FUNCTION_RUNNING_RE = re.compile(
r'''The function (?:"|')(?P<state_func>.*)(?:"|') is running as PID '''