Re: model.Model has no attribute 'objects'

2008-11-21 Thread craic
as soon as i posted i found the fix. my model needs to define the objects and point to the custom manager, ie class Raw(models.Model): objects = DBManager() On Nov 21, 11:54 am, craic <[EMAIL PROTECTED]> wrote: > I have a class called Raw which extends model. Much like every other > clas

model.Model has no attribute 'objects'

2008-11-21 Thread craic
I have a class called Raw which extends model. Much like every other class. Except, i'm using the method on this page to connect to a different DB. In the admin tool, all is lovely. I can view and add new "Raw" objects. http://www.eflorenzano.com/blog/post/easy-multi-database-support-django/ h