diff options
author | Matthew Hodgson <matthew@matrix.org> | 2016-05-05 01:54:12 +0100 |
---|---|---|
committer | Matthew Hodgson <matthew@matrix.org> | 2016-05-05 01:59:39 +0100 |
commit | 1cf5c379cb101c89897750d79e4548c172581f48 (patch) | |
tree | 415393b76373cf2648231467093d2934672f31fe | |
parent | Include no context (diff) | |
download | synapse-1cf5c379cb101c89897750d79e4548c172581f48.tar.xz |
spell out emailpusher full path
-rw-r--r-- | synapse/push/pusher.py | 2 |
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") |