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/listtab.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'poezio/tabs/listtab.py') diff --git a/poezio/tabs/listtab.py b/poezio/tabs/listtab.py index 364b3d44..8461f440 100644 --- a/poezio/tabs/listtab.py +++ b/poezio/tabs/listtab.py @@ -10,9 +10,9 @@ log = logging.getLogger(__name__) import curses import collections -from .. import windows -from .. common import safeJID -from .. decorators import refresh_wrapper +from poezio import windows +from poezio.common import safeJID +from poezio.decorators import refresh_wrapper from . import Tab -- cgit v1.2.3