diff options
author | David Baker <dave@matrix.org> | 2015-03-11 14:22:35 +0000 |
---|---|---|
committer | David Baker <dave@matrix.org> | 2015-03-11 14:22:35 +0000 |
commit | cdb2e045eed71b58c3e14471d9fb8c6ff1cf490d (patch) | |
tree | 8af606da7f472a24143667af7ce6c10d0e79be3e /synapse | |
parent | 'false' is not False (diff) | |
download | synapse-cdb2e045eed71b58c3e14471d9fb8c6ff1cf490d.tar.xz |
Again, underscore, not hyphen
Diffstat (limited to 'synapse')
-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 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]*)$") |