From f8a63a2ede775894ebf71fb1aa6051afebed84c6 Mon Sep 17 00:00:00 2001 From: Greg Sadetsky Date: Wed, 11 May 2022 16:05:02 -0400 Subject: [PATCH] fix: expose `on_exception` with other Django signals --- src/postmarker/django/__init__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/postmarker/django/__init__.py b/src/postmarker/django/__init__.py index fdda424..63cab0e 100644 --- a/src/postmarker/django/__init__.py +++ b/src/postmarker/django/__init__.py @@ -1,2 +1,2 @@ from .backend import EmailBackend, PostmarkEmailMessage, PostmarkEmailMixin, PostmarkEmailMultiAlternatives # noqa -from .signals import post_send, pre_send # noqa +from .signals import post_send, pre_send, on_exception # noqa