summaryrefslogtreecommitdiff
path: root/poezio/plugin_manager.py
diff options
context:
space:
mode:
authormathieui <mathieui@mathieui.net>2016-06-30 23:36:25 +0200
committermathieui <mathieui@mathieui.net>2016-06-30 23:36:25 +0200
commit8f7be37a700aa78f1906e155f79356fcd7e4b260 (patch)
tree8cd5da2325934544c51e2b08b764a39f79f212ed /poezio/plugin_manager.py
parent945035fc18765349563574103951d1aa403fa987 (diff)
downloadpoezio-8f7be37a700aa78f1906e155f79356fcd7e4b260.tar.gz
poezio-8f7be37a700aa78f1906e155f79356fcd7e4b260.tar.bz2
poezio-8f7be37a700aa78f1906e155f79356fcd7e4b260.tar.xz
poezio-8f7be37a700aa78f1906e155f79356fcd7e4b260.zip
Absolute imports everywhere
Diffstat (limited to 'poezio/plugin_manager.py')
-rw-r--r--poezio/plugin_manager.py10
1 files changed, 5 insertions, 5 deletions
diff --git a/poezio/plugin_manager.py b/poezio/plugin_manager.py
index ee587816..30fb45d2 100644
--- a/poezio/plugin_manager.py
+++ b/poezio/plugin_manager.py
@@ -9,10 +9,10 @@ import os
from os import path
import logging
-from . import core
-from . import tabs
-from . plugin import PluginAPI
-from . config import config
+from poezio import core
+from poezio import tabs
+from poezio.plugin import PluginAPI
+from poezio.config import config
log = logging.getLogger(__name__)
@@ -375,7 +375,7 @@ class PluginManager(object):
self.load_path.append(self.plugins_dir)
try:
- from . import poezio_plugins
+ from poezio import poezio_plugins
except:
pass
else: