summary refs log tree commit diff
diff options
context:
space:
mode:
authorMatthew Hodgson <matthew@matrix.org>2016-05-05 01:54:12 +0100
committerMatthew Hodgson <matthew@matrix.org>2016-05-05 01:59:39 +0100
commit1cf5c379cb101c89897750d79e4548c172581f48 (patch)
tree415393b76373cf2648231467093d2934672f31fe
parentInclude no context (diff)
downloadsynapse-1cf5c379cb101c89897750d79e4548c172581f48.tar.xz
spell out emailpusher full path
-rw-r--r--synapse/push/pusher.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/synapse/push/pusher.py b/synapse/push/pusher.py

index db5c1f1aa6..e6c0806415 100644 --- a/synapse/push/pusher.py +++ b/synapse/push/pusher.py
@@ -28,7 +28,7 @@ def create_pusher(hs, pusherdict): logger.info("email enable notifs: %r", hs.config.email_enable_notifs) if hs.config.email_enable_notifs: - from emailpusher import EmailPusher + from synapse.push.emailpusher import EmailPusher PUSHER_TYPES["email"] = EmailPusher logger.info("defined email pusher type")