summaryrefslogtreecommitdiff
path: root/plugins/random_nick.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/random_nick.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/random_nick.py')
-rw-r--r--plugins/random_nick.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/random_nick.py b/plugins/random_nick.py
index 2c4a2f5b..2c2852dc 100644
--- a/plugins/random_nick.py
+++ b/plugins/random_nick.py
@@ -11,7 +11,7 @@ automatically be changed to something random, for example: ::
"""
-from plugin import BasePlugin
+from poezio.plugin import BasePlugin
from random import choice
class Plugin(BasePlugin):