From 801ce451d82d1ebf10389d1e20edb9a3b74501b5 Mon Sep 17 00:00:00 2001 From: Seth Woodworth Date: Fri, 14 Jun 2013 20:39:00 -0400 Subject: [PATCH] add comment to note model --- karmaworld/apps/notes/models.py | 1 + 1 file changed, 1 insertion(+) diff --git a/karmaworld/apps/notes/models.py b/karmaworld/apps/notes/models.py index f34bb33..fe82f9b 100644 --- a/karmaworld/apps/notes/models.py +++ b/karmaworld/apps/notes/models.py @@ -53,6 +53,7 @@ class Note(models.Model): blank=True, null=True) # Upload files to MEDIA_ROOT/notes/YEAR/MONTH/DAY, 2012/10/30/filename + # FIXME: because we are adding files by hand in tasks.py, upload_to is being ignored for media files note_file = models.FileField( storage=fs, upload_to="notes/%Y/%m/%j/", -- 2.25.1