diff --git a/sendemail/views.py b/sendemail/views.py index 157d10d1..d374da1d 100644 --- a/sendemail/views.py +++ b/sendemail/views.py @@ -33,7 +33,8 @@ def contactview(request): else: recepients = settings.PRESS_EMAIL_RECEPIENTS - # flatten recepients list: (('name1', 'email1'), ...) -> ('email1', ...) + # flatten recepients list: + # (('name1', 'email1'), ...) -> ('email1', ...) recepients = map(lambda recepient: recepient[1], recepients) # all form data will originate from the same email address