pep8: Fix E122.

This commit is contained in:
Alex Huang
2016-12-01 23:15:16 -08:00
committed by Tim Abbott
parent 62494eeb97
commit c8ddea16c3
14 changed files with 39 additions and 38 deletions

View File

@@ -88,14 +88,14 @@ def gather_hot_conversations(user_profile, stream_messages):
# We'll display up to 2 messages from the conversation.
first_few_messages = [user_message.message for user_message in \
stream_messages.filter(
message__recipient__type_id=stream_id,
message__subject=subject)[:2]]
stream_messages.filter(
message__recipient__type_id=stream_id,
message__subject=subject)[:2]]
teaser_data = {"participants": users,
"count": count - len(first_few_messages),
"first_few_messages": build_message_list(user_profile,
first_few_messages)}
"first_few_messages": build_message_list(
user_profile, first_few_messages)}
hot_conversation_render_payloads.append(teaser_data)
return hot_conversation_render_payloads