fix earlier 'linter workaround'

(imported from commit 4ac9f1e57a241f95f53fa65d82c376a61de2c28c)
This commit is contained in:
acrefoot 2013-10-11 11:25:37 -04:00
parent e6d1453e5f
commit d2b8fe6f57
1 changed files with 1 additions and 1 deletions

View File

@ -1832,7 +1832,7 @@ def do_send_missedmessage_email(user_profile, missed_messages):
# If we have one huddle, set a reply-to to all of the members
# of the huddle except the user herself
disp_recipients = [", ".join(recipient['email']
for recipient in get_display_recipient(msg.recipient)
for recipient in get_display_recipient(mesg.recipient)
if recipient['email'] != user_profile.email)
for mesg in missed_messages]
if all(msg.recipient.type == Recipient.HUDDLE for msg in missed_messages) and \