Re: coercing to Unicode: need string or buffer, Post found

2009-07-20 Thread AKK
; > >    def __unicode__(self): > >        return self.comment_post > > > and when i true to add a comment using the admin pages i get : > > > coercing to Unicode: need string or buffer, Post found > > > presuambly this is something to do with  return self

Re: coercing to Unicode: need string or buffer, Post found

2009-07-20 Thread Alex Gaynor
x27;Date comment made') >    comment_body = models.TextField() >    comment_spam = models.BooleanField(default=False) >    comment_author = models.CharField(max_length=5000) > >    def __unicode__(self): >        return self.comment_post > > and when i true to add a comment

coercing to Unicode: need string or buffer, Post found

2009-07-20 Thread AKK
tField() comment_spam = models.BooleanField(default=False) comment_author = models.CharField(max_length=5000) def __unicode__(self): return self.comment_post and when i true to add a comment using the admin pages i get : coercing to Unicode: need string or buffer, Post found presuambly thi