Updated pause()
This commit is contained in:
parent
2d3ccac369
commit
b83f2b0c5f
1 changed files with 2 additions and 0 deletions
|
|
@ -433,6 +433,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