Re: Error saving a Model with a custom image field

2009-02-02 Thread Louis Sayers
I think it must be something that I'm not doing. It all works when I'm using a ModelForm, so there must be a difference between what I'm doing manually, and what the ModelForm does for me. The culprit must be my code: new_image = ImageWithThumbsField(images_to_save[image],

Re: Error saving a Model with a custom image field

2009-02-02 Thread Louis Sayers
I'm running the official release of django 1.02 Do you think there'd be any problems with this version? I've only been using django for the last 2 months, so I'm fairly new to it, and haven't investigated different revisions etc On Feb 3, 12:58 pm, Andrew Ingram wrote: >

Re: Error saving a Model with a custom image field

2009-02-02 Thread Andrew Ingram
Louis Sayers wrote: > I have an Image model: > ... > Exception Type: AttributeError at /listings/add/ > Exception Value: 'ImageWithThumbsField' object has no attribute 'find' > > > I'm really struggling with this error, if anyone has any ideas, I'll > be glad to hear them :) > > Thanks What