summaryrefslogtreecommitdiff
path: root/CODING_GUIDELINES.md
diff options
context:
space:
mode:
authorToshio Kuratomi <a.badger@gmail.com>2017-03-27 11:41:31 -0700
committerAdrian Likins <alikins@redhat.com>2017-03-27 14:41:31 -0400
commitd8f86fa4d2f2aa3cc6683cdb67ca43769a6eb592 (patch)
treeded190d496b4f57a94bb5bdc2a78f478ea0d1626 /CODING_GUIDELINES.md
parentdd63dfcf1ec50bade4eaf8925330d7c96e475cc5 (diff)
downloadansible-d8f86fa4d2f2aa3cc6683cdb67ca43769a6eb592.tar.gz
A couple more places where compat.six was used converted to module_utils.six (#22976)
Diffstat (limited to 'CODING_GUIDELINES.md')
-rw-r--r--CODING_GUIDELINES.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/CODING_GUIDELINES.md b/CODING_GUIDELINES.md
index 60bf41ea65..0fc49e8ba7 100644
--- a/CODING_GUIDELINES.md
+++ b/CODING_GUIDELINES.md
@@ -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