Make sure the uuid in vars is string
This commit is contained in:
parent
f926e81782
commit
c6a30f7000
1 changed files with 1 additions and 1 deletions
|
@ -385,7 +385,7 @@ class VariableManager:
|
|||
if task._role:
|
||||
variables['role_name'] = task._role.get_name()
|
||||
variables['role_path'] = task._role._role_path
|
||||
variables['role_uuid'] = task._role._uuid
|
||||
variables['role_uuid'] = unicode(task._role._uuid)
|
||||
|
||||
if self._inventory is not None:
|
||||
variables['inventory_dir'] = self._inventory.basedir()
|
||||
|
|
Loading…
Reference in a new issue