summaryrefslogtreecommitdiff
path: root/poezio/text_buffer.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/text_buffer.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/text_buffer.py')
-rw-r--r--poezio/text_buffer.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/poezio/text_buffer.py b/poezio/text_buffer.py
index 5b97b198..56832270 100644
--- a/poezio/text_buffer.py
+++ b/poezio/text_buffer.py
@@ -12,8 +12,8 @@ import logging
log = logging.getLogger(__name__)
from datetime import datetime
-from config import config
-from theming import get_theme, dump_tuple
+from . config import config
+from . theming import get_theme, dump_tuple
class Message:
__slots__ = ('txt', 'nick_color', 'time', 'str_time', 'nickname', 'user',