survey runner bugfix

This commit is contained in:
Bike Dude 2017-10-03 12:08:34 +02:00
parent b6723030f8
commit d28aa20c74
No known key found for this signature in database
GPG Key ID: 48D9F04503FC9A33

View File

@ -171,7 +171,7 @@ def _get_pool_results(*args, **kwargs):
# hash minion return values as a string
for minion in sorted(minions):
digest = hashlib.sha256(str(minions[minion])).hexdigest()
digest = hashlib.sha256(str(minions[minion]).encode('utf-8')).hexdigest()
if digest not in ret:
ret[digest] = {}
ret[digest]['pool'] = []