Skip to content

Commit

Permalink
Fix py3 issue
Browse files Browse the repository at this point in the history
  • Loading branch information
micafer committed Jul 28, 2020
1 parent f60c415 commit 080ab44
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion IM/ConfManager.py
Original file line number Diff line number Diff line change
Expand Up @@ -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)

Expand Down

0 comments on commit 080ab44

Please sign in to comment.