From 6e96188085432ba91f2ec100c3ee5515912611f5 Mon Sep 17 00:00:00 2001 From: Brian Coca Date: Thu, 1 Oct 2015 15:14:20 -0400 Subject: [PATCH] added missing entry for dealing with bcc --- lib/ansible/plugins/callback/mail.py | 1 + 1 file changed, 1 insertion(+) diff --git a/lib/ansible/plugins/callback/mail.py b/lib/ansible/plugins/callback/mail.py index 5b663983373..f6ec212966a 100644 --- a/lib/ansible/plugins/callback/mail.py +++ b/lib/ansible/plugins/callback/mail.py @@ -40,6 +40,7 @@ def mail(subject='Ansible error mail', sender=None, to=None, cc=None, bcc=None, b_sender = to_bytes(sender) b_to = to_bytes(to) b_cc = to_bytes(cc) + b_bcc = to_bytes(bcc) b_subject = to_bytes(subject) b_body = to_bytes(body)