Skip to content

Commit

Permalink
A few python 3.6 fixes
Browse files Browse the repository at this point in the history
Still cannot run python 3 against Ansible, due to Ansible not seeming
to fully support py3.
  • Loading branch information
retr0h committed Jun 9, 2017
1 parent b779a08 commit a13d5a2
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion molecule/provisioner/ansible.py
Expand Up @@ -362,8 +362,9 @@ def converge(self, playbook=None, **kwargs):
pb = self._get_ansible_playbook(self.playbooks.converge, **kwargs)
else:
pb = self._get_ansible_playbook(playbook, **kwargs)
out = pb.execute()

return pb.execute()
return out.decode('utf-8')

def destroy(self):
"""
Expand Down

0 comments on commit a13d5a2

Please sign in to comment.