Merge pull request #367 from rjeffman/fix_ipavault_vaulttype_type

Fix ipavault vault_type under Python 2.7
This commit is contained in:
Sergio Oliveira
2020-08-24 12:38:09 -03:00
committed by GitHub

View File

@@ -756,7 +756,7 @@ def main():
res_vault_type = res_find.get('ipavaulttype')[0] res_vault_type = res_find.get('ipavaulttype')[0]
args['ipavaulttype'] = vault_type = res_vault_type args['ipavaulttype'] = vault_type = res_vault_type
else: else:
args['ipavaulttype'] = vault_type = "symmetric" args['ipavaulttype'] = vault_type = u"symmetric"
# Create command # Create command
if state == "present": if state == "present":