summary refs log tree commit diff
path: root/synapse/rest/client/v1
diff options
context:
space:
mode:
authorDavid Baker <dave@matrix.org>2015-01-23 10:28:25 +0000
committerDavid Baker <dave@matrix.org>2015-01-23 10:28:25 +0000
commitbcd48b9636071543fa64e7fb066275d1c9c1e363 (patch)
treee6db8fb93a3470c627efc0d710e11e872f64db91 /synapse/rest/client/v1
parentThis really serves me right for ever making a map called 'map'. (diff)
downloadsynapse-bcd48b9636071543fa64e7fb066275d1c9c1e363.tar.xz
Fix adding rules without before/after & add the rule that we couldn't find to the error
Diffstat (limited to 'synapse/rest/client/v1')
-rw-r--r--synapse/rest/client/v1/push_rule.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/synapse/rest/client/v1/push_rule.py b/synapse/rest/client/v1/push_rule.py

index 7df3fc7f09..77a0772479 100644 --- a/synapse/rest/client/v1/push_rule.py +++ b/synapse/rest/client/v1/push_rule.py
@@ -166,8 +166,8 @@ class PushRuleRestServlet(RestServlet): ) except InconsistentRuleException as e: raise SynapseError(400, e.message) - except RuleNotFoundException: - raise SynapseError(400, "before/after rule not found") + except RuleNotFoundException as e: + raise SynapseError(400, e.message) defer.returnValue((200, {}))