From e869fc96b02ff90b79d0f1c38db2961a6b516a13 Mon Sep 17 00:00:00 2001 From: 2Shirt <2xShirt@gmail.com> Date: Sun, 12 May 2019 18:13:21 -0600 Subject: [PATCH] Ensure there's a space after all prompts --- .bin/Scripts/functions/common.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.bin/Scripts/functions/common.py b/.bin/Scripts/functions/common.py index 841d17e7..a457db16 100644 --- a/.bin/Scripts/functions/common.py +++ b/.bin/Scripts/functions/common.py @@ -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)