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_):