From ab86e7991886c3d3253af59349403c5973fe476c Mon Sep 17 00:00:00 2001 From: mathieui Date: Thu, 30 Jun 2016 22:56:24 +0200 Subject: Use absolute imports instead of relative ones All this crap is very brittle due to circular deps and python handling them badly. This appears to be fixing some stuff, at the very least. This is sed, so cleanup of imports (which can now be grouped together) is not done yet. --- poezio/tabs/xmltab.py | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) (limited to 'poezio/tabs/xmltab.py') diff --git a/poezio/tabs/xmltab.py b/poezio/tabs/xmltab.py index 29e2f2a7..8a866d2a 100644 --- a/poezio/tabs/xmltab.py +++ b/poezio/tabs/xmltab.py @@ -17,11 +17,11 @@ from xml.etree import ElementTree as ET from . import Tab -from .. import text_buffer -from .. import windows -from .. xhtml import clean_text -from .. decorators import command_args_parser, refresh_wrapper -from .. common import safeJID +from poezio import text_buffer +from poezio import windows +from poezio.xhtml import clean_text +from poezio.decorators import command_args_parser, refresh_wrapper +from poezio.common import safeJID class MatchJID(object): -- cgit v1.2.3