Ensure there's a space after all prompts
This commit is contained in:
parent
c10e3f4fd0
commit
e869fc96b0
1 changed files with 2 additions and 0 deletions
|
|
@ -431,6 +431,8 @@ def non_clobber_rename(full_path):
|
||||||
|
|
||||||
def pause(prompt='Press Enter to continue... '):
|
def pause(prompt='Press Enter to continue... '):
|
||||||
"""Simple pause implementation."""
|
"""Simple pause implementation."""
|
||||||
|
if prompt[-1] != ' ':
|
||||||
|
prompt += ' '
|
||||||
input(prompt)
|
input(prompt)
|
||||||
|
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue