Ben Wilson wrote: > Perhaps: > > def dictionary_make_attributes(self, settings): > for k,v in settings: > setattr(self, k, v) this one resulted in an error: "ValueError: too many values to unpack" it works with this correction: for k,v in settings.items() > http://ftp.python.org/doc/lib/built-in-funcs.html#l2h-64 -- http://lazaridis.com