def post_delete_scene(sender, instance, *args, **kwargs): """Overwrites post_delete method of Scene Model to delete also the folder fisically in the disk. """ if exists(instance.dir()): rmtree(instance.dir())