Hay guys, I'm using an ImageField to upload files, however when i add upload_to to the ImageField it doesnt append the directory to the MEDIA_ROOT
MEDIA_ROOT = '/Users/username/Django/site/assests/'
picture = models.ImageField(upload_to='uploads')
i get an error saying
No such file or directory: u'/Users/username/Django/site/assests/2homemap.png'
Also the record added to the DB is just the file name (without the uploads)
any ideas?