From d3b42d5bfc53a7aa3d73ae953afb637858d517d6 Mon Sep 17 00:00:00 2001 From: richard-dds Date: Wed, 15 May 2019 10:04:31 -0400 Subject: [PATCH] Formatting --- atst/utils/notification_sender.py | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/atst/utils/notification_sender.py b/atst/utils/notification_sender.py index 881106fa..5567d000 100644 --- a/atst/utils/notification_sender.py +++ b/atst/utils/notification_sender.py @@ -15,7 +15,10 @@ class NotificationSender(object): def send(self, body, type_=None): recipients = self._get_recipients(type_) self.logger.info( - "Sending a notification to these recipients: {}\n\n{}".format(recipients, body)) + "Sending a notification to these recipients: {}\n\n{}".format( + recipients, body + ) + ) self.queue.send_mail(recipients, self.EMAIL_SUBJECT, body) def _get_recipients(self, type_):