Merge "Fix regression in interactive client mode"

This commit is contained in:
Jenkins 2016-03-01 16:13:42 +00:00 committed by Gerrit Code Review
commit 594d98431c

View File

@ -158,7 +158,7 @@ class OpenStackShell(app.App):
def interact(self):
self.init_profile()
try:
ret_value = super(OpenStackShell, self).run_subcommand()
ret_value = super(OpenStackShell, self).interact()
finally:
self.close_profile()
return ret_value