I am trying to upload image through Django admin site. But it is not working i have installed PIL package. But it is displaying : <django.core.files.storage.FileSystemStorage object at 0x8a92f0c>/mcDonalds.jpg
from django.core.files.storage import FileSystemStorage
projectDirPath = path.dirname(path.dirname(__file__))
storeImageDir = FileSystemStorage(location=projectDirPath + '/couponRestApiApp/static')
storeImage = models.ImageField(upload_to=storeImageDir)
And the static dir is empty..is i am doing something wrong...