summary refs log tree commit diff
path: root/synapse/push
diff options
context:
space:
mode:
authorDavid Baker <dave@matrix.org>2016-04-28 15:16:30 +0100
committerDavid Baker <dave@matrix.org>2016-04-28 15:16:30 +0100
commit60f86fc876bcb106842d804baac9aff4860ece3b (patch)
treea9d19b90769c35e56d0d7354885e55cc26c16e60 /synapse/push
parentOnly import email pusher if email notifs are on (diff)
downloadsynapse-60f86fc876bcb106842d804baac9aff4860ece3b.tar.xz
pep8
Diffstat (limited to 'synapse/push')
-rw-r--r--synapse/push/mailer.py7
1 files changed, 5 insertions, 2 deletions
diff --git a/synapse/push/mailer.py b/synapse/push/mailer.py
index d2cf24765a..ae3e41b8ce 100644
--- a/synapse/push/mailer.py
+++ b/synapse/push/mailer.py
@@ -62,7 +62,7 @@ ALLOWED_ATTRS = {
     "img": ["src"],
 }
 # When bleach release a version with this option, we can specify schemes
-#ALLOWED_SCHEMES = ["http", "https", "ftp", "mailto"]
+# ALLOWED_SCHEMES = ["http", "https", "ftp", "mailto"]
 
 
 class Mailer(object):
@@ -283,7 +283,8 @@ class Mailer(object):
 
                     return MESSAGES_FROM_PERSON % (
                         descriptor_from_member_events([
-                            state_by_room[room_id][("m.room.member", s)] for s in sender_ids
+                            state_by_room[room_id][("m.room.member", s)]
+                            for s in sender_ids
                         ])
                     )
         else:
@@ -346,11 +347,13 @@ def deduped_ordered_list(l):
             ret.append(item)
     return ret
 
+
 def string_ordinal_total(s):
     tot = 0
     for c in s:
         tot += ord(c)
     return tot
 
+
 def format_ts_filter(value, format):
     return time.strftime(format, time.localtime(value / 1000))