From 6a1bd5f9b90354f670a53b240a226f598ccf3170 Mon Sep 17 00:00:00 2001 From: Emmanuel Gil Peyrot Date: Mon, 27 Jun 2016 23:38:58 +0100 Subject: Make all relative imports explicit. --- poezio/core/handlers.py | 28 ++++++++++++++-------------- 1 file changed, 14 insertions(+), 14 deletions(-) (limited to 'poezio/core/handlers.py') diff --git a/poezio/core/handlers.py b/poezio/core/handlers.py index 395efc26..44736e1e 100644 --- a/poezio/core/handlers.py +++ b/poezio/core/handlers.py @@ -19,20 +19,20 @@ from slixmpp import InvalidJID from slixmpp.xmlstream.stanzabase import StanzaBase, ElementBase from xml.etree import ElementTree as ET -import common -import fixes -import pep -import tabs -import windows -import xhtml -import multiuserchat as muc -from common import safeJID -from config import config, CACHE_DIR -from contact import Resource -from logger import logger -from roster import roster -from text_buffer import CorrectionError, AckError -from theming import dump_tuple, get_theme +from .. import common +from .. import fixes +from .. import pep +from .. import tabs +from .. import windows +from .. import xhtml +from .. import multiuserchat as muc +from .. common import safeJID +from .. config import config, CACHE_DIR +from .. contact import Resource +from .. logger import logger +from .. roster import roster +from .. text_buffer import CorrectionError, AckError +from .. theming import dump_tuple, get_theme from . commands import dumb_callback -- cgit v1.2.3