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/config.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'poezio/config.py') diff --git a/poezio/config.py b/poezio/config.py index ef622f53..650202e5 100644 --- a/poezio/config.py +++ b/poezio/config.py @@ -21,7 +21,7 @@ import pkg_resources from configparser import RawConfigParser, NoOptionError, NoSectionError from os import environ, makedirs, path, remove from shutil import copy2 -from args import parse_args +from . args import parse_args DEFAULT_CONFIG = { 'Poezio': { @@ -642,7 +642,7 @@ def setup_logging(): def post_logging_setup(): # common imports slixmpp, which creates then its loggers, so # it needs to be after logger configuration - from common import safeJID as JID + from . common import safeJID as JID global safeJID safeJID = JID -- cgit v1.2.3