Commit 0e22ee07 by Tobias Langer

Removed newline at end of prompt.

parent 7a9bd9b0
......@@ -35,7 +35,7 @@ def query_yes_no(question, default=None):
raise ValueError('Invalid default answer {}'.format(default))
while True:
print(question, prompt)
print(question, prompt, end='')
choice = input().lower()
if 'yes'.find(choice) == 0:
return True
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or sign in to comment