From 971a17c2c0378a109f40e1ef66ebc2f67fa084f8 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