Troy Farrell wrote: > I suppose instead you could add this line to your __init__(): > > setattr(self,'index_html',Acquision.Acquired) You could write that slightly more neatly as: self.index_html = Acquisition.Acquired But why wouldn't you want to do it in the class declaration? cheers, Chris