59

My application closes, but with an error, but it technically still closed. Soooo, no problem, right?

Comments
  • 11
    if it is working, it is not bug...
  • 6
    I mean technically it closes but it's really bad practice to be exiting with 1 when you should be exiting with 0
  • 2
    Just add an empty close attribute to the main form.
  • 1
    @skprog I solved it by using sys.exit()
  • 2
    You're not closing your program correctly unless it's getting put into an endless loop so that the user has to force quit it
Add Comment