diff options
author | Erik Johnston <erik@matrix.org> | 2016-05-31 15:45:53 +0100 |
---|---|---|
committer | Erik Johnston <erik@matrix.org> | 2016-05-31 15:45:53 +0100 |
commit | 1d4ee854e21626f64c945610e467f7e761534424 (patch) | |
tree | 73398c8d994a70a1c70cad4c4726f45b46fd4fd9 /synapse/storage | |
parent | Change fix (diff) | |
download | synapse-1d4ee854e21626f64c945610e467f7e761534424.tar.xz |
Fix typo
Diffstat (limited to 'synapse/storage')
-rw-r--r-- | synapse/storage/push_rule.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/synapse/storage/push_rule.py b/synapse/storage/push_rule.py index 65c20e8900..216a8bf69c 100644 --- a/synapse/storage/push_rule.py +++ b/synapse/storage/push_rule.py @@ -94,7 +94,7 @@ class PushRuleStore(SQLBaseStore): defer.returnValue({}) results = { - user_id: [] + user_id: {} for user_id in user_ids } |