My code look like this , it's not clear to me exit (0) and exit (other num). I give myself sometime but i didn't clear myself enough
from sys import exit
class Scene(object):
    def enter(self):
        print "This scene is not yet configured"
        exit(1)
 
     
     
    