fixed absolute_import to be on top as it requries

This commit is contained in:
Brian Coca 2015-02-19 16:45:34 -05:00
parent c2023f6f59
commit c587bf1488
2 changed files with 4 additions and 2 deletions

View file

@ -15,6 +15,8 @@
# You should have received a copy of the GNU General Public License
# along with Ansible. If not, see <http://www.gnu.org/licenses/>.
from __future__ import absolute_import
import sys
import base64
import json
@ -34,7 +36,6 @@ import uuid
import yaml
from jinja2.filters import environmentfilter
from distutils.version import LooseVersion, StrictVersion
from __future__ import absolute_import
from ansible import errors
from ansible.utils.hashing import md5s, checksum_s

View file

@ -15,10 +15,11 @@
# You should have received a copy of the GNU General Public License
# along with Ansible. If not, see <http://www.gnu.org/licenses/>.
from __future__ import absolute_import
import math
import collections
from ansible import errors
from __future__ import absolute_import
def unique(a):
if isinstance(a,collections.Hashable):