On Thu, Sep 08, 2005 at 03:43:57PM -0400, Nathaniel McCallum wrote: [...] > +except NotImplementedError, AttributeError: You mean "except (NotImplementedError, AttributeError):" -- the way you wrote it won't catch AttributeErrors. -Andrew.