summaryrefslogtreecommitdiff
path: root/plugins/ping.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/ping.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/ping.py')
-rw-r--r--plugins/ping.py12
1 files changed, 6 insertions, 6 deletions
diff --git a/plugins/ping.py b/plugins/ping.py
index fd3d467c..066ad1f6 100644
--- a/plugins/ping.py
+++ b/plugins/ping.py
@@ -22,12 +22,12 @@ Command
the current interlocutor.
"""
-from decorators import command_args_parser
-from plugin import BasePlugin
-from roster import roster
-from common import safeJID
-from contact import Contact, Resource
-import tabs
+from poezio.decorators import command_args_parser
+from poezio.plugin import BasePlugin
+from poezio.roster import roster
+from poezio.common import safeJID
+from poezio.contact import Contact, Resource
+from poezio import tabs
import time