Re: Saving model with raw=True

2009-03-16 Thread Preston Timmons
Thanks, Alex, I must misunderstand what it is for then. I got the idea from a post where Russ Magee mentioned it as being a way to prevent auto_now fields from being executed: http://groups.google.com/group/django-users/browse_thread/thread/167ee7bddccb4354/069a59146423d013?lnk=gst&q=auto_now#06

Re: Saving model with raw=True

2009-03-16 Thread Alex Gaynor
On Mon, Mar 16, 2009 at 6:55 PM, Preston Timmons wrote: > > At one time it seems there was an intention to have the save method on > models accept a keyword argument named raw which would allowed the > model to be saved without pre-processing. This argument is available > in the save_base method b

Saving model with raw=True

2009-03-16 Thread Preston Timmons
At one time it seems there was an intention to have the save method on models accept a keyword argument named raw which would allowed the model to be saved without pre-processing. This argument is available in the save_base method but not available in the save method. Am I right to conclude that