summaryrefslogtreecommitdiff
path: root/poezio/config.py
diff options
context:
space:
mode:
authormathieui <mathieui@mathieui.net>2016-06-30 23:36:25 +0200
committermathieui <mathieui@mathieui.net>2016-06-30 23:36:25 +0200
commit8f7be37a700aa78f1906e155f79356fcd7e4b260 (patch)
tree8cd5da2325934544c51e2b08b764a39f79f212ed /poezio/config.py
parent945035fc18765349563574103951d1aa403fa987 (diff)
downloadpoezio-8f7be37a700aa78f1906e155f79356fcd7e4b260.tar.gz
poezio-8f7be37a700aa78f1906e155f79356fcd7e4b260.tar.bz2
poezio-8f7be37a700aa78f1906e155f79356fcd7e4b260.tar.xz
poezio-8f7be37a700aa78f1906e155f79356fcd7e4b260.zip
Absolute imports everywhere
Diffstat (limited to 'poezio/config.py')
-rw-r--r--poezio/config.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/poezio/config.py b/poezio/config.py
index 650202e5..85fc5750 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 poezio.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 poezio.common import safeJID as JID
global safeJID
safeJID = JID