Fix export deletion #94
1 changed files with 1 additions and 1 deletions
|
@ -8,7 +8,7 @@ from .resource_generation_utils import storage
|
||||||
|
|
||||||
|
|
||||||
@receiver(post_delete, sender=Export)
|
@receiver(post_delete, sender=Export)
|
||||||
def delete_export(sender, instance, created, *args, **kwargs):
|
def delete_export(sender, instance, *args, **kwargs):
|
||||||
"""Clean up created files on the filesystem when an export is deleted"""
|
"""Clean up created files on the filesystem when an export is deleted"""
|
||||||
rmtree(storage.path(f"export_{instance.pk}"))
|
rmtree(storage.path(f"export_{instance.pk}"))
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue