diff options
author | mathieui <mathieui@mathieui.net> | 2016-06-30 22:56:24 +0200 |
---|---|---|
committer | mathieui <mathieui@mathieui.net> | 2016-06-30 22:56:24 +0200 |
commit | ab86e7991886c3d3253af59349403c5973fe476c (patch) | |
tree | dfeba66cd8b560e8d18255e13766c51548d88e84 /poezio/windows/base_wins.py | |
parent | 5680d1584c464ea4cd63c8938a5fbe37501a44b1 (diff) | |
download | poezio-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/base_wins.py')
-rw-r--r-- | poezio/windows/base_wins.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/poezio/windows/base_wins.py b/poezio/windows/base_wins.py index f1f9b84b..a5629ed5 100644 --- a/poezio/windows/base_wins.py +++ b/poezio/windows/base_wins.py @@ -13,7 +13,7 @@ log = logging.getLogger(__name__) import curses import string -from .. theming import to_curses_attr, read_tuple +from poezio.theming import to_curses_attr, read_tuple FORMAT_CHAR = '\x19' # These are non-printable chars, so they should never appear in the input, |