diff options
author | Emmanuel Gil Peyrot <linkmauve@linkmauve.fr> | 2016-06-28 00:10:52 +0100 |
---|---|---|
committer | Emmanuel Gil Peyrot <linkmauve@linkmauve.fr> | 2016-06-28 00:10:52 +0100 |
commit | 3a24d883539309544b13825ce3ae6726416d6939 (patch) | |
tree | 20892c0d9652f1ec040e1a93d2d7bc47016ece60 /plugins/day_change.py | |
parent | a210303b0131a8f5f8fc6c3a2f905fdb76fd078e (diff) | |
download | poezio-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/day_change.py')
-rw-r--r-- | plugins/day_change.py | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/plugins/day_change.py b/plugins/day_change.py index 6e0c3e1f..2bd56358 100644 --- a/plugins/day_change.py +++ b/plugins/day_change.py @@ -5,10 +5,10 @@ date has changed. """ from gettext import gettext as _ -from plugin import BasePlugin +from poezio.plugin import BasePlugin import datetime -import tabs -import timed_events +from poezio import tabs +from poezio import timed_events class Plugin(BasePlugin): def init(self): |