From 080ab44ead0ab935c97ff35479e23ca2e019b97f Mon Sep 17 00:00:00 2001 From: micafer Date: Tue, 28 Jul 2020 08:20:31 +0200 Subject: [PATCH] Fix py3 issue --- IM/ConfManager.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/IM/ConfManager.py b/IM/ConfManager.py index 3fc71c2de..4700d812b 100644 --- a/IM/ConfManager.py +++ b/IM/ConfManager.py @@ -769,7 +769,7 @@ def generate_playbook(self, vm, ctxt_elem, tmp_dir): else: recipes = configure.recipes conf_content = merge_recipes(conf_content, recipes) - conf_content = vault_edit.vault.encrypt(conf_content) + conf_content = str(vault_edit.vault.encrypt(conf_content)) else: conf_content = merge_recipes(conf_content, configure.recipes)