add comment to note model
[oweals/karmaworld.git] / karmaworld / apps / notes / models.py
index f34bb333deb06c67bdce09d312544c842f17f83e..fe82f9babb227e115846696bbe6be1cf0a07f1ab 100644 (file)
@@ -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/",