From b12da00c3b2a2b9b1fa106561af6ae65a2cea77b Mon Sep 17 00:00:00 2001 From: Pierre-Yves Chibon Date: Jan 13 2015 14:15:15 +0000 Subject: Same bug, same fix, see previous commit (add missing relation) --- diff --git a/progit/notify.py b/progit/notify.py index 7314f89..3f00cc0 100644 --- a/progit/notify.py +++ b/progit/notify.py @@ -81,7 +81,7 @@ New comment: ) mail_to = set([cmt.user.emails[0].email for cmt in comment.issue.comments]) mail_to.add(comment.issue.project.user.emails[0].email) - if issue.assignee and comment.issue.assignee.emails: + if comment.issue.assignee and comment.issue.assignee.emails: mail_to.add(comment.issue.assignee.emails[0].email) send_email( text,