Skip to content

Commit ef0cf00

Browse files
committed
Fix interactive password prompt
Change-Id: Ie0e7a9cd6016b5c646a111a76e8372e10602a25c Closes-Bug: #1473862
1 parent 1462fb7 commit ef0cf00

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

‎openstackclient/common/clientmanager.py‎

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -125,7 +125,7 @@ def setup_auth(self):
125125
# password auth is requested.
126126
if (self.auth_plugin_name.endswith('password') and
127127
not self._cli_options.auth.get('password', None)):
128-
self._cli_options.os_password = self._pw_callback()
128+
self._cli_options.auth['password'] = self._pw_callback()
129129

130130
(auth_plugin, self._auth_params) = auth.build_auth_params(
131131
self.auth_plugin_name,

0 commit comments

Comments
 (0)