From 8a839ad8b82599cccf9d34e83ce3f0735334d817 Mon Sep 17 00:00:00 2001 From: Dina Belova Date: Tue, 1 Mar 2016 13:45:19 +0300 Subject: [PATCH] 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 --- openstackclient/shell.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/openstackclient/shell.py b/openstackclient/shell.py index 659bbee72c..53e9be08bb 100644 --- a/openstackclient/shell.py +++ b/openstackclient/shell.py @@ -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