Yep, I should have thought of that. Cheers!
On Jan 31, 7:13 pm, Ivan Illarionov <[EMAIL PROTECTED]> wrote:
> > def save(self):
> > if self.stuff !=
> > magic_function_that_tells_what_is_in_database_for('stuff')
> > do_this()
> > super(A, self).save()
>
> This 'magic function' is
> self.__class__.objects.get(id=self.id).stuff
>
> if self.stuff != self.__class__.objects.get(id=self.id).stuff:
> do_this()
--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups
"Django users" group.
To post to this group, send email to django-users@googlegroups.com
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at
http://groups.google.com/group/django-users?hl=en
-~----------~----~----~----~------~----~------~--~---