Updated pause()

This commit is contained in:
2Shirt 2019-06-04 18:48:03 -06:00
parent 2d3ccac369
commit b83f2b0c5f
Signed by: 2Shirt
GPG key ID: 152FAC923B0E132C

View file

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