summaryrefslogtreecommitdiff
path: root/poezio/core/handlers.py
diff options
context:
space:
mode:
authorEmmanuel Gil Peyrot <linkmauve@linkmauve.fr>2016-06-27 23:38:58 +0100
committerEmmanuel Gil Peyrot <linkmauve@linkmauve.fr>2016-06-27 23:54:50 +0100
commit6a1bd5f9b90354f670a53b240a226f598ccf3170 (patch)
treed1a4c6981e443312a82b897552e42154b0accad7 /poezio/core/handlers.py
parent7e51947f475db6ac96d6a4f05559dcd785a8bc42 (diff)
downloadpoezio-6a1bd5f9b90354f670a53b240a226f598ccf3170.tar.gz
poezio-6a1bd5f9b90354f670a53b240a226f598ccf3170.tar.bz2
poezio-6a1bd5f9b90354f670a53b240a226f598ccf3170.tar.xz
poezio-6a1bd5f9b90354f670a53b240a226f598ccf3170.zip
Make all relative imports explicit.
Diffstat (limited to 'poezio/core/handlers.py')
-rw-r--r--poezio/core/handlers.py28
1 files changed, 14 insertions, 14 deletions
diff --git a/poezio/core/handlers.py b/poezio/core/handlers.py
index 395efc26..44736e1e 100644
--- a/poezio/core/handlers.py
+++ b/poezio/core/handlers.py
@@ -19,20 +19,20 @@ from slixmpp import InvalidJID
from slixmpp.xmlstream.stanzabase import StanzaBase, ElementBase
from xml.etree import ElementTree as ET
-import common
-import fixes
-import pep
-import tabs
-import windows
-import xhtml
-import multiuserchat as muc
-from common import safeJID
-from config import config, CACHE_DIR
-from contact import Resource
-from logger import logger
-from roster import roster
-from text_buffer import CorrectionError, AckError
-from theming import dump_tuple, get_theme
+from .. import common
+from .. import fixes
+from .. import pep
+from .. import tabs
+from .. import windows
+from .. import xhtml
+from .. import multiuserchat as muc
+from .. common import safeJID
+from .. config import config, CACHE_DIR
+from .. contact import Resource
+from .. logger import logger
+from .. roster import roster
+from .. text_buffer import CorrectionError, AckError
+from .. theming import dump_tuple, get_theme
from . commands import dumb_callback