From 2b42c6a3ead7c2bd35bbea1c6d704a4f89a4c8a2 Mon Sep 17 00:00:00 2001 From: mathieui Date: Sun, 26 May 2013 20:07:12 +0200 Subject: Update setup.py to use distutils MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit (use new default directory, install the plugins as a separate python moduleā€¦) --- src/poezio.py | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) (limited to 'src/poezio.py') diff --git a/src/poezio.py b/src/poezio.py index 161446da..c0863416 100644 --- a/src/poezio.py +++ b/src/poezio.py @@ -12,11 +12,13 @@ Starting point of poezio. Launches both the Connection and Gui import sys import os -sys.path.append(os.path.dirname(os.path.abspath(__file__))) + import signal import logging -from logger import logger +sys.path.append(os.path.dirname(os.path.abspath(__file__))) + +from logger import logger from config import options import singleton import core -- cgit v1.2.3