Convert notification_subject from byte string to unicode.

This commit is contained in:
Aaron Tan
2016-09-28 15:45:23 -04:00
parent 17f70fbc21
commit eaa6567cf3

View File

@@ -181,11 +181,11 @@ class JobNotificationMixin(object):
def _build_notification_message(self, status_str): def _build_notification_message(self, status_str):
notification_body = self.notification_data() notification_body = self.notification_data()
notification_subject = "{} #{} '{}' {} on Ansible Tower: {}".format(self.get_notification_friendly_name(), notification_subject = u"{} #{} '{}' {} on Ansible Tower: {}".format(self.get_notification_friendly_name(),
self.id, self.id,
self.name, self.name,
status_str, status_str,
notification_body['url']) notification_body['url'])
notification_body['friendly_name'] = self.get_notification_friendly_name() notification_body['friendly_name'] = self.get_notification_friendly_name()
return (notification_subject, notification_body) return (notification_subject, notification_body)