0
0
mirror of https://github.com/wagtail/wagtail.git synced 2024-11-29 17:36:49 +01:00

Formatting

This commit is contained in:
jacobtoppm 2020-03-31 16:58:27 +01:00 committed by Matt Westcott
parent 6647825d13
commit e809e1f262
2 changed files with 2 additions and 1 deletions

View File

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

View File

@ -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"""