Merge "Fix image pull action"

This commit is contained in:
Jenkins 2017-06-27 06:16:18 +00:00 committed by Gerrit Code Review
commit 9ac84cdc36

View File

@ -192,5 +192,5 @@ def image_list(request, limit=None, marker=None, sort_key=None,
def image_create(request, **kwargs):
args = _cleanup_params(IMAGE_PULL_ATTRS, True, **kwargs)
args, run = _cleanup_params(IMAGE_PULL_ATTRS, True, **kwargs)
return zunclient(request).images.create(**args)