Fix regression in interactive client mode

Fix typo introduced in OSprofiler intergation commit, that
leaded to non-working interactive mode of the CLI client.

Change-Id: If5dfc90dbbe64d4665c3e33e936f0cc674738351
Closes-Bug: 1551160
This commit is contained in:
Dina Belova 2016-03-01 13:45:19 +03:00
parent 11490b79f4
commit 8a839ad8b8
1 changed files with 1 additions and 1 deletions

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