summaryrefslogtreecommitdiff
path: root/poezio/windows/bookmark_forms.py
diff options
context:
space:
mode:
authormathieui <mathieui@mathieui.net>2016-06-30 22:56:24 +0200
committermathieui <mathieui@mathieui.net>2016-06-30 22:56:24 +0200
commitab86e7991886c3d3253af59349403c5973fe476c (patch)
treedfeba66cd8b560e8d18255e13766c51548d88e84 /poezio/windows/bookmark_forms.py
parent5680d1584c464ea4cd63c8938a5fbe37501a44b1 (diff)
downloadpoezio-ab86e7991886c3d3253af59349403c5973fe476c.tar.gz
poezio-ab86e7991886c3d3253af59349403c5973fe476c.tar.bz2
poezio-ab86e7991886c3d3253af59349403c5973fe476c.tar.xz
poezio-ab86e7991886c3d3253af59349403c5973fe476c.zip
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.
Diffstat (limited to 'poezio/windows/bookmark_forms.py')
-rw-r--r--poezio/windows/bookmark_forms.py4
1 files changed, 2 insertions, 2 deletions
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):