Merge "Make body of std.email optional"

This commit is contained in:
Jenkins 2016-12-22 11:24:28 +00:00 committed by Gerrit Code Review
commit 6aa9e5a514

View File

@ -282,7 +282,7 @@ class SendEmailAction(base.Action):
# Task invocation parameters.
self.to = to_addrs
self.subject = subject or "<No subject>"
self.body = body
self.body = body or "<No body>"
# Action provider settings.
self.smtp_server = smtp_server