aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorSean Smith <ssmith@iol.unh.edu>2021-03-25 15:16:50 -0400
committerSawyer Bergeron <sbergeron@iol.unh.edu>2021-03-26 22:50:41 +0000
commit2e9a8c854a93705d080dc54b8c6e3ba36eaba366 (patch)
treed9ff3889329ac0ede77d42e0a28ce3e47f7c0856 /src
parente0a5e206a3a68bbae373bf8f9257b5aba14932c5 (diff)
Additional fix for email
Signed-off-by: Sean Smith <ssmith@iol.unh.edu> Change-Id: I0599e29c7930386651f77bceccf05d069ebd4101
Diffstat (limited to 'src')
-rw-r--r--src/notifier/tasks.py2
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)