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/roster.py | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'poezio/roster.py') diff --git a/poezio/roster.py b/poezio/roster.py index ba7da63e..17a55a2a 100644 --- a/poezio/roster.py +++ b/poezio/roster.py @@ -12,13 +12,13 @@ Defines the Roster and RosterGroup classes import logging log = logging.getLogger(__name__) -from config import config -from contact import Contact -from roster_sorting import SORTING_METHODS, GROUP_SORTING_METHODS +from . config import config +from . contact import Contact +from . roster_sorting import SORTING_METHODS, GROUP_SORTING_METHODS from os import path as p from datetime import datetime -from common import safeJID +from . common import safeJID from slixmpp.exceptions import IqError, IqTimeout -- cgit v1.2.3