diff options
author | David Baker <dbkr@users.noreply.github.com> | 2016-06-02 17:26:06 +0100 |
---|---|---|
committer | David Baker <dbkr@users.noreply.github.com> | 2016-06-02 17:26:06 +0100 |
commit | 7a5a5f2df260cc9abe7daec89b237f713aabd031 (patch) | |
tree | 0feb46099e618cf9d29f321953258f94c488070b /synapse/push/mailer.py | |
parent | add some branding debugging (diff) | |
parent | Fix error in email notification string formatting (diff) | |
download | synapse-7a5a5f2df260cc9abe7daec89b237f713aabd031.tar.xz |
Merge pull request #820 from matrix-org/dbkr/email_notif_string_fmt_error
Fix error in email notification string formatting
Diffstat (limited to 'synapse/push/mailer.py')
-rw-r--r-- | synapse/push/mailer.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/synapse/push/mailer.py b/synapse/push/mailer.py index 944f3b481d..de31c7dbbe 100644 --- a/synapse/push/mailer.py +++ b/synapse/push/mailer.py @@ -41,7 +41,7 @@ logger = logging.getLogger(__name__) MESSAGE_FROM_PERSON_IN_ROOM = "You have a message on %(app)s from %(person)s " \ - "in the %s room..." + "in the %(room)s room..." MESSAGE_FROM_PERSON = "You have a message on %(app)s from %(person)s..." MESSAGES_FROM_PERSON = "You have messages on %(app)s from %(person)s..." MESSAGES_IN_ROOM = "You have messages on %(app)s in the %(room)s room..." |