summary refs log tree commit diff
path: root/synapse/push/__init__.py
diff options
context:
space:
mode:
authorDavid Baker <dave@matrix.org>2015-03-11 14:22:35 +0000
committerDavid Baker <dave@matrix.org>2015-03-11 14:22:35 +0000
commitcdb2e045eed71b58c3e14471d9fb8c6ff1cf490d (patch)
tree8af606da7f472a24143667af7ce6c10d0e79be3e /synapse/push/__init__.py
parent'false' is not False (diff)
downloadsynapse-cdb2e045eed71b58c3e14471d9fb8c6ff1cf490d.tar.xz
Again, underscore, not hyphen
Diffstat (limited to 'synapse/push/__init__.py')
-rw-r--r--synapse/push/__init__.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/synapse/push/__init__.py b/synapse/push/__init__.py
index c98aca60b9..d69c92911f 100644
--- a/synapse/push/__init__.py
+++ b/synapse/push/__init__.py
@@ -32,7 +32,7 @@ class Pusher(object):
     INITIAL_BACKOFF = 1000
     MAX_BACKOFF = 60 * 60 * 1000
     GIVE_UP_AFTER = 24 * 60 * 60 * 1000
-    DEFAULT_ACTIONS = ['dont-notify']
+    DEFAULT_ACTIONS = ['dont_notify']
 
     INEQUALITY_EXPR = re.compile("^([=<>]*)([0-9]*)$")