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/windows/muc.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'poezio/windows/muc.py') diff --git a/poezio/windows/muc.py b/poezio/windows/muc.py index 4a0eb626..594c2157 100644 --- a/poezio/windows/muc.py +++ b/poezio/windows/muc.py @@ -9,9 +9,9 @@ import curses from . import Win -from .. import poopt -from .. config import config -from .. theming import to_curses_attr, get_theme +from poezio import poopt +from poezio.config import config +from poezio.theming import to_curses_attr, get_theme def userlist_to_cache(userlist): result = [] -- cgit v1.2.3