From 6a1bd5f9b90354f670a53b240a226f598ccf3170 Mon Sep 17 00:00:00 2001 From: Emmanuel Gil Peyrot Date: Mon, 27 Jun 2016 23:38:58 +0100 Subject: Make all relative imports explicit. --- poezio/user.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'poezio/user.py') diff --git a/poezio/user.py b/poezio/user.py index 4142869b..5509ec8a 100644 --- a/poezio/user.py +++ b/poezio/user.py @@ -13,9 +13,9 @@ An user is a MUC participant, not a roster contact (see contact.py) from random import choice from datetime import timedelta, datetime from hashlib import md5 -import xhtml +from . import xhtml -from theming import get_theme +from . theming import get_theme import logging log = logging.getLogger(__name__) -- cgit v1.2.3