pull/6257/head
jacobtoppm 2020-03-31 16:58:27 +01:00 zatwierdzone przez Matt Westcott
rodzic 6647825d13
commit e809e1f262
2 zmienionych plików z 2 dodań i 1 usunięć

Wyświetl plik

@ -230,7 +230,7 @@ class EmailNotificationMixin:
sent_count = 0
try:
with OpenedConnection(connection) as open_connection:
# Send emails
for recipient in recipients:
try:

Wyświetl plik

@ -3,6 +3,7 @@ from wagtail.core.models import Task
TASK_TYPES = []
def get_concrete_descendants(model_class, inclusive=True):
"""Retrieves non-abstract descendants of the given model class. If `inclusive` is set to
True, includes model_class"""