Merge "convert uids to list before passing to make_*_task" into stable/mitaka

This commit is contained in:
Jenkins 2016-09-14 10:19:50 +00:00 committed by Gerrit Code Review
commit c7023a4195
1 changed files with 1 additions and 1 deletions

View File

@ -73,7 +73,7 @@ class BasePluginDeploymentHooksSerializer(object):
'not supported', task)
if make_task:
yield self._serialize_task(make_task(uids, task), task)
yield self._serialize_task(make_task(list(uids), task), task)
def _set_tasks_defaults(self, plugin, tasks):
for task in tasks: