From af609a29bee3bc17800cf061c66b6eabcf18234f Mon Sep 17 00:00:00 2001 From: Weitian LI Date: Tue, 24 Jun 2014 17:50:49 +0800 Subject: Fixed a problem with OverwriteStorage. OverwriteStorage should be called as: FileField(..., storage=OverwriteStorage(),...) ^^ --- schedule/models.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'schedule') diff --git a/schedule/models.py b/schedule/models.py index c0d004b..37ed3f4 100644 --- a/schedule/models.py +++ b/schedule/models.py @@ -45,7 +45,7 @@ class EventAttachment(models.Model): description = models.TextField(_("Description"), blank=True) attachment = models.FileField(upload_to='schedule/attachments', verbose_name=_("Attachment"), - storage=OverwriteStorage) + storage=OverwriteStorage()) content_type = models.ForeignKey(ContentType) object_id = models.PositiveIntegerField() content_object = generic.GenericForeignKey("content_type", "object_id") -- cgit v1.2.2