Hello I am trying to get sorl thumbnail to delete cached thumbnails when the image associated with my model is modified. I am accomplishing this using a signal as shown below. The listner is called successfully, yet the cached thumbnail is not being deleted and keeps showing the old thumbnail.
def delete_thumbnail(sender, **kwargs):
f = kwargs.get('file_object')
delete(f, delete_file=False)
EditStudentImage.connect(delete_thumbnail, dispatch_uid="edit_student_image")
Any help would be much appreciated.