> > I had a similar issue. > > The fix i have found on the web is to wrap your action in an if > statement to make sure you only do it once > > Something like > > def save(self): > if not image_scaled: > scaled_name = os.path.split(self.image_original.name)[-1] > self.image_scaled.save(scaled_name, self.image_original, > save=False) > super(Page, self).save()
See, that didn't do it, as the field needed to be filled for the first time. Just having the one line of code made that happen. I actually ended up just grabbing sorl thumbnails, which does exactly what I wanted. But it's still funny. Perhaps if I put a timestamp on the image and the thumbnail, and used that to check if it had been updated. My guess is that the admin interface was calling save() multiple times. Thanks for the reply! --~--~---------~--~----~------------~-------~--~----~ 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 -~----------~----~----~----~------~----~------~--~---