Ensure there's a space after all prompts

This commit is contained in:
2Shirt 2019-05-12 18:13:21 -06:00
parent c10e3f4fd0
commit e869fc96b0
Signed by: 2Shirt
GPG key ID: 152FAC923B0E132C

View file

@ -431,6 +431,8 @@ def non_clobber_rename(full_path):
def pause(prompt='Press Enter to continue... '):
"""Simple pause implementation."""
if prompt[-1] != ' ':
prompt += ' '
input(prompt)