diff options
| author | Jenkins <jenkins@review.openstack.org> | 2015-07-13 18:58:21 +0000 |
|---|---|---|
| committer | Gerrit Code Review <review@openstack.org> | 2015-07-13 18:58:21 +0000 |
| commit | 963f3049c0171e1919d1a7357348bea5d2b4215b (patch) | |
| tree | d3e784cbfb0823b93d9a1f48d4a97289d84e8f03 /openstackclient | |
| parent | 1ea34fc8a5da350bc9880a0cf2a22e7313cc52fc (diff) | |
| parent | ef0cf00b3367b3656c94b4972bc757ee0026876d (diff) | |
| download | python-openstackclient-963f3049c0171e1919d1a7357348bea5d2b4215b.tar.gz | |
Merge "Fix interactive password prompt"
Diffstat (limited to 'openstackclient')
| -rw-r--r-- | openstackclient/common/clientmanager.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/openstackclient/common/clientmanager.py b/openstackclient/common/clientmanager.py index fae95630..c77a7848 100644 --- a/openstackclient/common/clientmanager.py +++ b/openstackclient/common/clientmanager.py @@ -125,7 +125,7 @@ class ClientManager(object): # password auth is requested. if (self.auth_plugin_name.endswith('password') and not self._cli_options.auth.get('password', None)): - self._cli_options.os_password = self._pw_callback() + self._cli_options.auth['password'] = self._pw_callback() (auth_plugin, self._auth_params) = auth.build_auth_params( self.auth_plugin_name, |
