Re: unexpected keyword argument 'force_insert'

2008-09-30 Thread akhaitan
Thanks a lot.. i had similar problems.. Did helped.. On Sep 24, 1:52 pm, "[EMAIL PROTECTED]" <[EMAIL PROTECTED]> wrote: > Found it... actually on the user_profile models save() > > changing it to > def save(self, *args, **kwargs): > ... >    super(SiteUser, self).save(*args, **kwargs) > > fixed i

Re: unexpected keyword argument 'force_insert'

2008-09-24 Thread [EMAIL PROTECTED]
Found it... actually on the user_profile models save() changing it to def save(self, *args, **kwargs): ... super(SiteUser, self).save(*args, **kwargs) fixed it. On Sep 24, 3:11 pm, "[EMAIL PROTECTED]" <[EMAIL PROTECTED]> wrote: > Using django 1.0 and django-registration I'm getting this erro