From ea017296db2ec909823a091e09694813d0af646a Mon Sep 17 00:00:00 2001 From: Chris Hutchison Date: Thu, 19 Apr 2018 22:38:59 -0400 Subject: [PATCH] Update notifications.py --- isso/ext/notifications.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/isso/ext/notifications.py b/isso/ext/notifications.py index 2b4a81c..bc03993 100644 --- a/isso/ext/notifications.py +++ b/isso/ext/notifications.py @@ -132,7 +132,7 @@ class SMTP(object): body = self.format(thread, comment) if uwsgi: - uwsgi.spool({b"subject": thread["title"].encode("utf-8"), + uwsgi.spool({b"subject": thread['title'].encode("utf-8") if 'title' in thread else 'New comment', b"body": body.encode("utf-8")}) else: start_new_thread(self._retry, (thread["title"], body))