include return value from django_send_mail

pull/1981/merge
Matthew Downey 2015-12-01 10:27:04 +11:00 zatwierdzone przez Karl Hobley
rodzic 7887360429
commit 43f23a600e
1 zmienionych plików z 1 dodań i 1 usunięć

Wyświetl plik

@ -135,7 +135,7 @@ def send_mail(subject, message, recipient_list, from_email=None, **kwargs):
else:
from_email = 'webmaster@localhost'
django_send_mail(subject, message, from_email, recipient_list, **kwargs)
return django_send_mail(subject, message, from_email, recipient_list, **kwargs)
def send_notification(page_revision_id, notification, excluded_user_id):