A couple more places where compat.six was used converted to module_utils.six (#22976)

This commit is contained in:
Toshio Kuratomi 2017-03-27 11:41:31 -07:00 committed by Adrian Likins
commit d8f86fa4d2
2 changed files with 2 additions and 2 deletions

View file

@ -277,7 +277,7 @@ To test if something is a string, consider that it may be unicode.
if type(x) == str:
# yes
from ansible.compat.six import string_types
from ansible.module_utils.six import string_types
if isinstance(x, string_types):
Cleverness