From 0ddbcf884139ea3deb194035a799495eecebb6f3 Mon Sep 17 00:00:00 2001 From: Brian Coca Date: Sat, 2 Sep 2017 00:18:04 -0400 Subject: [PATCH] python3 fix --- lib/ansible/plugins/inventory/virtualbox.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/ansible/plugins/inventory/virtualbox.py b/lib/ansible/plugins/inventory/virtualbox.py index 98013e7d225..5f24b393fb2 100644 --- a/lib/ansible/plugins/inventory/virtualbox.py +++ b/lib/ansible/plugins/inventory/virtualbox.py @@ -65,7 +65,7 @@ import os from subprocess import Popen, PIPE from ansible.errors import AnsibleParserError -from ansible.module_utils._text import to_bytes +from ansible.module_utils._text import to_bytes, to_text from ansible.plugins.inventory import BaseInventoryPlugin @@ -215,6 +215,6 @@ class InventoryModule(BaseInventoryPlugin): AnsibleParserError(e) source_data = p.stdout.readlines() - inventory.cache[cache_key] = source_data + inventory.cache[cache_key] = to_text(source_data) self._populate_from_source(source_data, config_data)