Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion humanfriendly/prompts.py
Original file line number Diff line number Diff line change
Expand Up @@ -267,7 +267,8 @@ def prompt_for_input(question, default=None, padding=True, strip=True):
question = question.replace('\n', '\n ')
# Render the prompt and wait for the user's reply.
try:
reply = interactive_prompt(question)
print(question)
reply = interactive_prompt('')
finally:
if reply is None:
# If the user terminated the prompt using Control-C or
Expand Down