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/bookmark_forms.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'poezio/windows/bookmark_forms.py') diff --git a/poezio/windows/bookmark_forms.py b/poezio/windows/bookmark_forms.py index f7d72f78..bef4b247 100644 --- a/poezio/windows/bookmark_forms.py +++ b/poezio/windows/bookmark_forms.py @@ -6,8 +6,8 @@ import curses from . import Win from . inputs import Input from . data_forms import FieldInput -from .. theming import to_curses_attr, get_theme -from .. common import safeJID +from poezio.theming import to_curses_attr, get_theme +from poezio.common import safeJID class BookmarkJIDInput(FieldInput, Input): def __init__(self, field): -- cgit v1.2.3