This commit is contained in:
David Baker 2016-04-28 15:16:30 +01:00
parent 937c407eef
commit 60f86fc876
2 changed files with 6 additions and 3 deletions

View File

@ -283,7 +283,8 @@ class Mailer(object):
return MESSAGES_FROM_PERSON % ( return MESSAGES_FROM_PERSON % (
descriptor_from_member_events([ 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: else:
@ -346,11 +347,13 @@ def deduped_ordered_list(l):
ret.append(item) ret.append(item)
return ret return ret
def string_ordinal_total(s): def string_ordinal_total(s):
tot = 0 tot = 0
for c in s: for c in s:
tot += ord(c) tot += ord(c)
return tot return tot
def format_ts_filter(value, format): def format_ts_filter(value, format):
return time.strftime(format, time.localtime(value / 1000)) return time.strftime(format, time.localtime(value / 1000))