From 747ec875884e87e3cac59bb4d127c5387958d0cd Mon Sep 17 00:00:00 2001 From: Thomas Woerner <twoerner@redhat.com> Date: Wed, 31 Jan 2018 23:19:47 +0100 Subject: [PATCH] library/ipahost.py: Fix ipahost to work with Python3 --- library/ipahost.py | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/library/ipahost.py b/library/ipahost.py index b0a55533..274cb699 100644 --- a/library/ipahost.py +++ b/library/ipahost.py @@ -155,6 +155,7 @@ host: ''' import os +import six from ansible.module_utils.basic import AnsibleModule @@ -162,6 +163,9 @@ from ipalib import api, errors from ipaplatform.paths import paths from ipapython.ipautil import run +if six.PY3: + unicode = str + def get_host_diff(ipa_host, module_host): """ Compares two dictionaries containing host attributes and builds a dict -- GitLab