Skip to content

Commit 8a839ad

Browse files
committed
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
1 parent 11490b7 commit 8a839ad

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

openstackclient/shell.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -158,7 +158,7 @@ def run_subcommand(self, argv):
158158
def interact(self):
159159
self.init_profile()
160160
try:
161-
ret_value = super(OpenStackShell, self).run_subcommand()
161+
ret_value = super(OpenStackShell, self).interact()
162162
finally:
163163
self.close_profile()
164164
return ret_value

0 commit comments

Comments
 (0)