Merge "Fix return value of "image set" command"

This commit is contained in:
Jenkins 2016-03-01 08:29:33 +00:00 committed by Gerrit Code Review
commit fa998d641d

View File

@ -691,7 +691,7 @@ class SetImage(command.Command):
if not kwargs:
self.log.warning('no arguments specified')
return {}, {}
return
image = image_client.images.update(image.id, **kwargs)
finally: