diff options
author | Erik Johnston <erik@matrix.org> | 2015-02-10 17:34:51 +0000 |
---|---|---|
committer | Erik Johnston <erik@matrix.org> | 2015-02-10 17:34:51 +0000 |
commit | eae0842bc17b8af75bcb599866a5df8670fac754 (patch) | |
tree | a79e00280a48b6d56eae9c9ce6dee4448b4a119c /synapse/push/rulekinds.py | |
parent | Merge branch 'develop' of github.com:matrix-org/synapse into state-chache (diff) | |
parent | Log all the exits from _attempt_new_transaction (diff) | |
download | synapse-eae0842bc17b8af75bcb599866a5df8670fac754.tar.xz |
Merge branch 'develop' of github.com:matrix-org/synapse into state-chache
Diffstat (limited to 'synapse/push/rulekinds.py')
-rw-r--r-- | synapse/push/rulekinds.py | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/synapse/push/rulekinds.py b/synapse/push/rulekinds.py index 763bdee58e..660aa4e10e 100644 --- a/synapse/push/rulekinds.py +++ b/synapse/push/rulekinds.py @@ -1,8 +1,8 @@ PRIORITY_CLASS_MAP = { - 'underride': 1, - 'sender': 2, - 'room': 3, - 'content': 4, - 'override': 5, - } + 'underride': 1, + 'sender': 2, + 'room': 3, + 'content': 4, + 'override': 5, +} PRIORITY_CLASS_INVERSE_MAP = {v: k for k, v in PRIORITY_CLASS_MAP.items()} |