diff options
| author | Jenkins <jenkins@review.openstack.org> | 2017-09-28 09:02:31 +0000 |
|---|---|---|
| committer | Gerrit Code Review <review@openstack.org> | 2017-09-28 09:02:31 +0000 |
| commit | 082f728d179dc2bba64e9821eaec18f429aa15fd (patch) | |
| tree | eeaa2bc69899f8c47ac3874f88e0ec57f13571d2 /heatclient/v1/shell.py | |
| parent | fc3763288c34d1c33db2e31744a6bf4f8c33f330 (diff) | |
| parent | 4d295fe8b4a8619f9bca09420ab5f9216c737f51 (diff) | |
| download | python-heatclient-ocata-em.tar.gz | |
Diffstat (limited to 'heatclient/v1/shell.py')
| -rw-r--r-- | heatclient/v1/shell.py | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/heatclient/v1/shell.py b/heatclient/v1/shell.py index a3179b3..27f8c1e 100644 --- a/heatclient/v1/shell.py +++ b/heatclient/v1/shell.py @@ -304,9 +304,9 @@ def do_stack_delete(hc, args): try: if not args.yes and sys.stdin.isatty(): - sys.stdout.write( - _("Are you sure you want to delete this stack(s) [y/N]? ")) - prompt_response = sys.stdin.readline().lower() + prompt_response = six.moves.input( + _("Are you sure you want to delete this stack(s) [y/N]? ") + ).lower() if not prompt_response.startswith('y'): logger.info(_LI( 'User did not confirm stack delete so taking no action.')) |
