diff options
author | Sean Smith <ssmith@iol.unh.edu> | 2021-03-25 15:16:50 -0400 |
---|---|---|
committer | Sawyer Bergeron <sbergeron@iol.unh.edu> | 2021-03-26 22:50:41 +0000 |
commit | 2e9a8c854a93705d080dc54b8c6e3ba36eaba366 (patch) | |
tree | d9ff3889329ac0ede77d42e0a28ce3e47f7c0856 | |
parent | e0a5e206a3a68bbae373bf8f9257b5aba14932c5 (diff) |
Additional fix for email
Signed-off-by: Sean Smith <ssmith@iol.unh.edu>
Change-Id: I0599e29c7930386651f77bceccf05d069ebd4101
-rw-r--r-- | src/notifier/tasks.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/notifier/tasks.py b/src/notifier/tasks.py index 389750a..64d7574 100644 --- a/src/notifier/tasks.py +++ b/src/notifier/tasks.py @@ -47,5 +47,5 @@ def dispatch_emails(): email.title, email.message, os.environ.get("DEFAULT_FROM_EMAIL", "opnfv@laas-dashboard"), - email.recipient, + [email.recipient], fail_silently=False) |