Andreas Tille wrote: > try: > verbosedisplays = None > except: pass Is that is? Yuk... bar try-except's such :-S try replacing it with: try: verbosedisplays = None except: raise ...and see if you get any errors... cheers, Chris