Rename subject -> topic_name in internal_prep_message().

This commit is contained in:
Steve Howell
2017-10-27 05:25:07 -07:00
committed by Tim Abbott
parent f04550d143
commit 973ee97612

View File

@@ -1813,7 +1813,7 @@ def _internal_prep_message(realm, sender, addressee, content):
return None
def internal_prep_message(realm, sender_email, recipient_type_name, recipients,
subject, content):
topic_name, content):
# type: (Realm, Text, str, Text, Text, Text) -> Optional[Dict[str, Any]]
"""
See _internal_prep_message for details of how this works.
@@ -1825,7 +1825,7 @@ def internal_prep_message(realm, sender_email, recipient_type_name, recipients,
sender,
recipient_type_name,
parsed_recipients,
subject,
topic_name,
realm=realm)
return _internal_prep_message(