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/inputs.py | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) (limited to 'poezio/windows/inputs.py') diff --git a/poezio/windows/inputs.py b/poezio/windows/inputs.py index c204b503..da7b53d9 100644 --- a/poezio/windows/inputs.py +++ b/poezio/windows/inputs.py @@ -8,14 +8,14 @@ log = logging.getLogger(__name__) import curses import string -from .. import keyboard -from .. import common -from .. import poopt +from poezio import keyboard +from poezio import common +from poezio import poopt from . import Win from . base_wins import format_chars from . funcs import find_first_format_char -from .. config import config -from .. theming import to_curses_attr +from poezio.config import config +from poezio.theming import to_curses_attr class Input(Win): -- cgit v1.2.3