summaryrefslogtreecommitdiff
path: root/plugins/simple_notify.py
diff options
context:
space:
mode:
authorEmmanuel Gil Peyrot <linkmauve@linkmauve.fr>2016-06-28 00:10:52 +0100
committerEmmanuel Gil Peyrot <linkmauve@linkmauve.fr>2016-06-28 00:10:52 +0100
commit3a24d883539309544b13825ce3ae6726416d6939 (patch)
tree20892c0d9652f1ec040e1a93d2d7bc47016ece60 /plugins/simple_notify.py
parenta210303b0131a8f5f8fc6c3a2f905fdb76fd078e (diff)
downloadpoezio-3a24d883539309544b13825ce3ae6726416d6939.tar.gz
poezio-3a24d883539309544b13825ce3ae6726416d6939.tar.bz2
poezio-3a24d883539309544b13825ce3ae6726416d6939.tar.xz
poezio-3a24d883539309544b13825ce3ae6726416d6939.zip
Make plugins import from the absolute poezio package.
Diffstat (limited to 'plugins/simple_notify.py')
-rw-r--r--plugins/simple_notify.py8
1 files changed, 4 insertions, 4 deletions
diff --git a/plugins/simple_notify.py b/plugins/simple_notify.py
index bc2ba8f6..9f35c437 100644
--- a/plugins/simple_notify.py
+++ b/plugins/simple_notify.py
@@ -84,11 +84,11 @@ Options defined
"""
-from plugin import BasePlugin
-from xhtml import get_body_from_message_stanza
-from timed_events import DelayedEvent
+from poezio.plugin import BasePlugin
+from poezio.xhtml import get_body_from_message_stanza
+from poezio.timed_events import DelayedEvent
import shlex
-import common
+from poezio import common
class Plugin(BasePlugin):