From ccad26f792cf3757bbd4b046af76810965021816 Mon Sep 17 00:00:00 2001 From: Jeremy Fincher Date: Sun, 19 Oct 2003 20:32:28 +0000 Subject: [PATCH] Added a more descriptive return message on KeyboardInterrupt. --- scripts/supybot-wizard.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/scripts/supybot-wizard.py b/scripts/supybot-wizard.py index a603dd136..171e19a0f 100755 --- a/scripts/supybot-wizard.py +++ b/scripts/supybot-wizard.py @@ -609,4 +609,6 @@ if __name__ == '__main__': try: main() except KeyboardInterrupt: - pass + myPrint("""Well, it looked like you cancelled out of the wizard before + it was done. Unfortunately, I didn't get to write anything to file. + Please run the wizard again to completion.""")