Re: overriding save, non-admin error

2007-09-06 Thread RajeshD
On Sep 4, 7:18 am, canburak <[EMAIL PROTECTED]> wrote: > I have a problem on overriding the save() method. > my new save is: > class ClassName: > def save(self): > self.title = self.title.title() > super(ClassName, self).save() > > when admin site uses this save(), I get the

overriding save, non-admin error

2007-09-04 Thread canburak
I have a problem on overriding the save() method. my new save is: class ClassName: def save(self): self.title = self.title.title() super(ClassName, self).save() when admin site uses this save(), I get the non-unique exception at django/python level but I hope to see a red box in the