From: "Chris Withers" <chrisw@nipltd.com> > Hmmm... Exceptions.Exception isn't :-S > > Any idea how I'd go about catching an analysing string exceptions in Python > Scripts? Is there any specific exception that you are interested in catching, but can't? try: # whatever except: # Handle Exception ...will work without needing Exception itself. Cheers, Evan & digicool