diff options
| author | Jenkins <jenkins@review.openstack.org> | 2016-03-01 16:13:42 +0000 |
|---|---|---|
| committer | Gerrit Code Review <review@openstack.org> | 2016-03-01 16:13:42 +0000 |
| commit | 594d98431c6713ae7be42c8d9073d55db0df37fa (patch) | |
| tree | 52195745925d8bb4bad470a6b271cfcf764b94dc | |
| parent | 15d3b6f3178c448bab0eea3f8c597496c59447f5 (diff) | |
| parent | 8a839ad8b82599cccf9d34e83ce3f0735334d817 (diff) | |
| download | python-openstackclient-594d98431c6713ae7be42c8d9073d55db0df37fa.tar.gz | |
Merge "Fix regression in interactive client mode"
| -rw-r--r-- | openstackclient/shell.py | 2 |
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 |
