summary refs log tree commit diff
path: root/synapse/push/action_generator.py
diff options
context:
space:
mode:
authorErik Johnston <erikj@jki.re>2017-05-19 13:42:49 +0100
committerGitHub <noreply@github.com>2017-05-19 13:42:49 +0100
commit99713dc7d33a4f65e68e7a5b83c0b6cb346f41ac (patch)
tree7dcbb8503bcf13dc2e9b74a642b5a7701a3023a9 /synapse/push/action_generator.py
parentDon't push users who have left (diff)
parentMove invalidation cb to its own structure (diff)
downloadsynapse-99713dc7d33a4f65e68e7a5b83c0b6cb346f41ac.tar.xz
Merge pull request #2234 from matrix-org/erikj/fix_push
Store ActionGenerator in HomeServer
Diffstat (limited to 'synapse/push/action_generator.py')
-rw-r--r--synapse/push/action_generator.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/synapse/push/action_generator.py b/synapse/push/action_generator.py
index 0658497d9b..fe09d50d55 100644
--- a/synapse/push/action_generator.py
+++ b/synapse/push/action_generator.py
@@ -24,7 +24,7 @@ import logging
 logger = logging.getLogger(__name__)
 
 
-class ActionGenerator:
+class ActionGenerator(object):
     def __init__(self, hs):
         self.hs = hs
         self.clock = hs.get_clock()