fixed absolute_import to be on top as it requries

pull/10298/head
Brian Coca 10 years ago
parent c2023f6f59
commit c587bf1488

@ -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

@ -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):

Loading…
Cancel
Save