diff options
author | Mark Haines <mark.haines@matrix.org> | 2015-05-26 14:58:49 +0100 |
---|---|---|
committer | Mark Haines <mark.haines@matrix.org> | 2015-05-26 14:58:49 +0100 |
commit | fff790540991363c0d749e4dc4d17a958516ff8f (patch) | |
tree | c670822feb7b6b8cf3bb00f62d0d8a8704cf3355 | |
parent | changelog (diff) | |
parent | Take a dict of the rule, not the rule list (diff) | |
download | synapse-fff790540991363c0d749e4dc4d17a958516ff8f.tar.xz |
Merge branch 'bugs/SYN-390' into release-v0.9.1
-rw-r--r-- | synapse/push/__init__.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/synapse/push/__init__.py b/synapse/push/__init__.py index 167b973b2b..8059fff1b2 100644 --- a/synapse/push/__init__.py +++ b/synapse/push/__init__.py @@ -76,7 +76,7 @@ class Pusher(object): rules = [] for rawrule in rawrules: - rule = dict(rawrules) + rule = dict(rawrule) rule['conditions'] = json.loads(rawrule['conditions']) rule['actions'] = json.loads(rawrule['actions']) rules.append(rule) |