Fix python3 test.

This commit is contained in:
Yannig Perré 2015-11-03 11:52:09 +01:00
commit 30f827d92d
2 changed files with 4 additions and 2 deletions

View file

@ -76,7 +76,7 @@ class HostVars(collections.Mapping):
data = self._variable_manager.get_vars(loader=self._loader, host=host, play=self._play, include_hostvars=False)
# Using cache in order to avoid template call
sha1_hash = sha1(str(data)).hexdigest()
sha1_hash = sha1(str(data).encode('utf-8')).hexdigest()
if sha1_hash in self._cached_result:
result = self._cached_result[sha1_hash]
else: