summary refs log tree commit diff
path: root/synapse/push/httppusher.py
diff options
context:
space:
mode:
authorAdrian Tschira <nota@notafile.com>2018-04-28 12:17:56 +0200
committerAdrian Tschira <nota@notafile.com>2018-04-28 13:41:41 +0200
commit57b58e2174f120fb13fbe2f6d57e8647b69921ec (patch)
treebd1f59843692196bcebc6756b710d939f49628bf /synapse/push/httppusher.py
parentMerge pull request #3127 from matrix-org/rav/deferred_timeout (diff)
downloadsynapse-57b58e2174f120fb13fbe2f6d57e8647b69921ec.tar.xz
make imports local
Signed-off-by: Adrian Tschira <nota@notafile.com>
Diffstat (limited to 'synapse/push/httppusher.py')
-rw-r--r--synapse/push/httppusher.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/synapse/push/httppusher.py b/synapse/push/httppusher.py
index 1420d378ef..b077e1a446 100644
--- a/synapse/push/httppusher.py
+++ b/synapse/push/httppusher.py
@@ -18,8 +18,8 @@ import logging
 from twisted.internet import defer, reactor
 from twisted.internet.error import AlreadyCalled, AlreadyCancelled
 
-import push_rule_evaluator
-import push_tools
+from . import push_rule_evaluator
+from . import push_tools
 import synapse
 from synapse.push import PusherConfigException
 from synapse.util.logcontext import LoggingContext