From 9414c04395269d3c308fbf2f155b87541bdd20b9 Mon Sep 17 00:00:00 2001 From: Alan Mason <1923621+2Shirt@users.noreply.github.com> Date: Sun, 3 Dec 2017 18:02:32 -0800 Subject: [PATCH] Pause during abort() --- .bin/Scripts/functions/common.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.bin/Scripts/functions/common.py b/.bin/Scripts/functions/common.py index 285129c7..f809dd32 100644 --- a/.bin/Scripts/functions/common.py +++ b/.bin/Scripts/functions/common.py @@ -65,7 +65,8 @@ class UnsupportedOSError(Exception): def abort(): """Abort script.""" print_warning('Aborted.') - sleep(5) + sleep(1) + pause(prompt='Press Enter to exit... ') exit_script() def ask(prompt='Kotaero!'):