diff options
author | Toshio Kuratomi <toshio@fedoraproject.org> | 2015-10-15 17:55:23 -0700 |
---|---|---|
committer | Toshio Kuratomi <toshio@fedoraproject.org> | 2015-10-16 08:21:28 -0700 |
commit | baa309309d4041678bac4352da62a3b555b4fd49 (patch) | |
tree | cb863a297bb37d9beac11a850ca0f8c785f55f71 /lib/ansible/constants.py | |
parent | 28c933ce5eff7de7f9fea538f52620d7a86b9895 (diff) | |
download | ansible-baa309309d4041678bac4352da62a3b555b4fd49.tar.gz |
Bundle a new version of python-six for compatibility along with some code to make it easy for distributions to override the bunndled copy if they have a new enough version.six-compat
Diffstat (limited to 'lib/ansible/constants.py')
-rw-r--r-- | lib/ansible/constants.py | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/lib/ansible/constants.py b/lib/ansible/constants.py index 642f8343d2..b883ec3835 100644 --- a/lib/ansible/constants.py +++ b/lib/ansible/constants.py @@ -21,11 +21,10 @@ __metaclass__ = type import os import pwd -import sys from string import ascii_letters, digits -from six import string_types -from six.moves import configparser +from ansible.compat.six import string_types +from ansible.compat.six.moves import configparser from ansible.parsing.splitter import unquote from ansible.errors import AnsibleOptionsError |