Skip to content
Snippets Groups Projects
Commit 60f86fc8 authored by David Baker's avatar David Baker
Browse files

pep8

parent 937c407e
No related branches found
No related tags found
No related merge requests found
......@@ -48,7 +48,7 @@ class EmailConfig(Config):
if (len(missing) > 0):
raise RuntimeError(
"email.enable_notifs is True but required keys are missing: %s" %
(", ".join(["email."+k for k in missing]),)
(", ".join(["email." + k for k in missing]),)
)
if config.get("public_baseurl") is None:
......
......@@ -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))
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment