mirror of
https://github.com/ansible-collections/community.general.git
synced 2024-09-14 20:13:21 +02:00
Allow storing input from user in a pause prompt
This commit is contained in:
parent
2ed803837e
commit
3ee7b177e8
1 changed files with 1 additions and 1 deletions
|
@ -101,7 +101,7 @@ class ActionModule(object):
|
|||
# Clear out any unflushed buffered input which would
|
||||
# otherwise be consumed by raw_input() prematurely.
|
||||
tcflush(sys.stdin, TCIFLUSH)
|
||||
raw_input(self.prompt)
|
||||
self.result['user_input'] = raw_input(self.prompt)
|
||||
except KeyboardInterrupt:
|
||||
while True:
|
||||
print '\nAction? (a)bort/(c)ontinue: '
|
||||
|
|
Loading…
Reference in a new issue