summaryrefslogtreecommitdiff
path: root/test/units/executor/module_common/test_module_common.py
diff options
context:
space:
mode:
authorToshio Kuratomi <a.badger@gmail.com>2017-03-23 13:35:05 -0700
committerGitHub <noreply@github.com>2017-03-23 13:35:05 -0700
commit2fff690caab6a1c6a81973f704be3fbd0bde2c2f (patch)
treed30539214f54f7073ca75c11e8077b0c21aff82f /test/units/executor/module_common/test_module_common.py
parentc7c8481181e96dab508e11917551551f83c5b677 (diff)
downloadansible-2fff690caab6a1c6a81973f704be3fbd0bde2c2f.tar.gz
Update module_utils.six to latest (#22855)
* Update module_utils.six to latest We've been held back on the version of six we could use on the module side to 1.4.x because of python-2.4 compatibility. Now that our minimum is Python-2.6, we can update to the latest version of six in module_utils and get rid of the second copy in lib/ansible/compat.
Diffstat (limited to 'test/units/executor/module_common/test_module_common.py')
-rw-r--r--test/units/executor/module_common/test_module_common.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/units/executor/module_common/test_module_common.py b/test/units/executor/module_common/test_module_common.py
index edbf836e10..0d7ff3e265 100644
--- a/test/units/executor/module_common/test_module_common.py
+++ b/test/units/executor/module_common/test_module_common.py
@@ -22,9 +22,9 @@ __metaclass__ = type
import pytest
import ansible.errors
-from ansible.compat.six import PY2
from ansible.executor import module_common as amc
+from ansible.module_utils.six import PY2
class TestStripComments(object):