diff options
author | Matthew Hodgson <matthew@matrix.org> | 2016-05-05 02:10:57 +0100 |
---|---|---|
committer | Matthew Hodgson <matthew@matrix.org> | 2016-05-05 02:10:57 +0100 |
commit | 634efb65f1ca8d3485c75a828a98161cfd617bb6 (patch) | |
tree | e788abfd860db7d74fea28171b870e3e0662ef3f /synapse/push | |
parent | fix room.txt (diff) | |
download | synapse-634efb65f1ca8d3485c75a828a98161cfd617bb6.tar.xz |
pep8
Diffstat (limited to 'synapse/push')
-rw-r--r-- | synapse/push/mailer.py | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/synapse/push/mailer.py b/synapse/push/mailer.py index 5951c14ce1..aab6387125 100644 --- a/synapse/push/mailer.py +++ b/synapse/push/mailer.py @@ -39,12 +39,14 @@ import logging logger = logging.getLogger(__name__) -MESSAGE_FROM_PERSON_IN_ROOM = "You have a message on %%app%% from %(person)s in the %s room..." +MESSAGE_FROM_PERSON_IN_ROOM = "You have a message on %%app%% from %(person)s " \ + "in the %s room..." MESSAGE_FROM_PERSON = "You have a message on %%app%% from %(person)s..." MESSAGES_FROM_PERSON = "You have messages on %%app%% from %(person)s..." MESSAGES_IN_ROOM = "There are some messages on %%app%% for you in the %(room)s room..." MESSAGES_IN_ROOMS = "Here are some messages on %%app%% you may have missed..." -INVITE_FROM_PERSON_TO_ROOM = "%(person)s has invited you to join the %(room)s room on %%app%%..." +INVITE_FROM_PERSON_TO_ROOM = "%(person)s has invited you to join the " \ + "%(room)s room on %%app%%..." INVITE_FROM_PERSON = "%(person)s has invited you to chat on %%app%%..." CONTEXT_BEFORE = 1 |