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/rostertab.py | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) (limited to 'poezio/tabs/rostertab.py') diff --git a/poezio/tabs/rostertab.py b/poezio/tabs/rostertab.py index 6fa737a2..f4681c5b 100644 --- a/poezio/tabs/rostertab.py +++ b/poezio/tabs/rostertab.py @@ -18,15 +18,15 @@ from functools import partial from . import Tab -from .. import common -from .. import windows -from .. common import safeJID -from .. config import config -from .. contact import Contact, Resource -from .. decorators import refresh_wrapper -from .. roster import RosterGroup, roster -from .. theming import get_theme, dump_tuple -from .. decorators import command_args_parser +from poezio import common +from poezio import windows +from poezio.common import safeJID +from poezio.config import config +from poezio.contact import Contact, Resource +from poezio.decorators import refresh_wrapper +from poezio.roster import RosterGroup, roster +from poezio.theming import get_theme, dump_tuple +from poezio.decorators import command_args_parser class RosterInfoTab(Tab): """ -- cgit v1.2.3