Ignore return value from update()

This commit is contained in:
tengqm 2015-03-03 18:00:53 +08:00
parent 25749bb188
commit 4fc573db5a

@ -88,7 +88,7 @@ class Client(object):
def update(self, cls, options):
obj = cls.new(**options)
try:
return obj.update(self.session)
obj.update(self.session)
except Exception as ex:
client_exc.parse_exception(ex)