Oliver Lavery wrote:
> It seems that the most obvious way would be to alter _save_FIELD_file in
> django/db/models/base.py ~ line 335.
>
> Relatively trivial patch, you'd just need to add an accumulator to the while
> loop, afaict.
>
> Naturally there may be horrid consequences I haven't thought of ;)
>
> Cheers,
> ~ol

That sounds like a horrible way to me. Rather use the save() method in
the models:

class Photo(models.model):
  #stuff...
  def save(self):
    if self.name in Photo.objects.all():
     #change file name of self
    super(Photo, self).save()


--~--~---------~--~----~------------~-------~--~----~
 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
-~----------~----~----~----~------~----~------~--~---

Reply via email to