From 8f7be37a700aa78f1906e155f79356fcd7e4b260 Mon Sep 17 00:00:00 2001 From: mathieui Date: Thu, 30 Jun 2016 23:36:25 +0200 Subject: Absolute imports everywhere --- poezio/plugin_manager.py | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) (limited to 'poezio/plugin_manager.py') 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: -- cgit v1.2.3