[Answer]-Django-Filebrowser – IOError due to directory in image field

1👍

Try setting the format attribute on your field

image = FileBrowseField("Image", format='image', max_length=200, blank=True, null=True)

Leave a comment