I don't know if this is a bug.. Here is the minimal test case: class CustomStorage(FileSystemStorage): def get_valid_name(self, name): import random return '%s.abc' % (random.randint(100, 999),)
def test_uploadto(self,filename): return 'aaa/%s' % filename testA = models.FileField(storage=CustomStorage(), upload_to='test') testB = models.FileField(storage=CustomStorage(), upload_to=test_uploadto) In testA, the file will be saved like "test/123.abc" (as expected) In testB, the file will be saved like "aaa/FILENAME", where FILENAME is the name of the local file uploaded by the user, but at least for me, is expected that the argument filename is generated by the storage as in the testA.. -- You received this message because you are subscribed to the Google Groups "Django users" group. To post to this group, send email to django-us...@googlegroups.com. To unsubscribe from this group, send email to django-users+unsubscr...@googlegroups.com. For more options, visit this group at http://groups.google.com/group/django-users?hl=en.