summary refs log tree commit diff
path: root/synapse/push
diff options
context:
space:
mode:
authorDavid Baker <dave@matrix.org>2016-06-02 17:17:16 +0100
committerDavid Baker <dave@matrix.org>2016-06-02 17:17:16 +0100
commit07a555991600137c830eb3b06f90a305c8f1e3d8 (patch)
tree00f10407d1a62fc0674a6ec4bf05beb59d9a62f5 /synapse/push
parentStore the typing users as user_id strings. (#819) (diff)
downloadsynapse-07a555991600137c830eb3b06f90a305c8f1e3d8.tar.xz
Fix error in email notification string formatting
Diffstat (limited to 'synapse/push')
-rw-r--r--synapse/push/mailer.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/synapse/push/mailer.py b/synapse/push/mailer.py
index 0e9d8ccb53..63c7ec18a5 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..."