Added a more descriptive return message on KeyboardInterrupt.

This commit is contained in:
Jeremy Fincher 2003-10-19 20:32:28 +00:00
parent b727890b15
commit ccad26f792
1 changed files with 3 additions and 1 deletions

View File

@ -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.""")