summaryrefslogtreecommitdiff
path: root/openstackclient/shell.py
diff options
context:
space:
mode:
authorDina Belova <dbelova@mirantis.com>2016-03-01 13:45:19 +0300
committerDina Belova <dbelova@mirantis.com>2016-03-01 13:45:19 +0300
commit8a839ad8b82599cccf9d34e83ce3f0735334d817 (patch)
tree20fde4378867cb2619cfb611194c35e83bae5cfd /openstackclient/shell.py
parent11490b79f4271a1f0b49a277288ba4cdf854a082 (diff)
downloadpython-openstackclient-8a839ad8b82599cccf9d34e83ce3f0735334d817.tar.gz
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
Diffstat (limited to 'openstackclient/shell.py')
-rw-r--r--openstackclient/shell.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/openstackclient/shell.py b/openstackclient/shell.py
index 659bbee7..53e9be08 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