Fix return value of "image set" command

"image set" command should return None. But in one path,
it returns ({}, {}). This patch fixes this.

Change-Id: I3847e661cb7e89863921a3f0a859d9b1a8077ede
This commit is contained in:
Tang Chen 2016-02-29 15:45:27 +08:00
parent 2819450be5
commit 61c1d985c7
1 changed files with 1 additions and 1 deletions

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: