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/data_forms.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'poezio/tabs/data_forms.py') diff --git a/poezio/tabs/data_forms.py b/poezio/tabs/data_forms.py index 59994890..82c0f128 100644 --- a/poezio/tabs/data_forms.py +++ b/poezio/tabs/data_forms.py @@ -5,8 +5,8 @@ Defines the data-forms Tab import logging log = logging.getLogger(__name__) -from .. import windows -from .. tabs import Tab +from poezio import windows +from poezio.tabs import Tab class DataFormsTab(Tab): """ -- cgit v1.2.3