Re: unbound method __unicode__() error in Admin page with ManyToMany

2009-11-11 Thread django_fo...@codechimp.net
I honestly dont know how that got in there. I probably copied/pasted it in there by mistake, but that was indeed the problem. Thanks! On Nov 11, 12:33 pm, Karen Tracey wrote: > On Wed, Nov 11, 2009 at 12:06 PM, django_fo...@codechimp.net < > > codech...@gmail.com> wrote: > > > I am sorry, it w

Re: unbound method __unicode__() error in Admin page with ManyToMany

2009-11-11 Thread Karen Tracey
On Wed, Nov 11, 2009 at 12:06 PM, django_fo...@codechimp.net < codech...@gmail.com> wrote: > > I am sorry, it was up all night working on this, and I was tired, and > honestly didn't want to piss anyone off or offend anyone. > > I was not angry or offended, sorry if I gave that impression. I was

Re: unbound method __unicode__() error in Admin page with ManyToMany

2009-11-11 Thread django_fo...@codechimp.net
I am sorry, it was up all night working on this, and I was tired, and honestly didn't want to piss anyone off or offend anyone. ...here is the actual code in question: Snippet from models.py: class DisneySpotType(models.Model): name = models.CharField(max_length=128, primary_key=True) d

Re: unbound method __unicode__() error in Admin page with ManyToMany

2009-11-11 Thread Karen Tracey
On Wed, Nov 11, 2009 at 7:06 AM, django_fo...@codechimp.net < codech...@gmail.com> wrote: > > I have a class, A, that has a ManyToMany reference to another class, B > like so: > >class B(models.Model): >name = models.CharField() > >def __unicode__(self) >return self