summaryrefslogtreecommitdiff
path: root/src/poezio.py
diff options
context:
space:
mode:
authormathieui <mathieui@mathieui.net>2013-05-26 20:07:12 +0200
committermathieui <mathieui@mathieui.net>2013-05-26 20:13:39 +0200
commit2b42c6a3ead7c2bd35bbea1c6d704a4f89a4c8a2 (patch)
tree10a77ef05670ec575e2c3357e0b3df9b0847a261 /src/poezio.py
parent1b9dc72d14f52d55a936d92311c18912567359a4 (diff)
downloadpoezio-2b42c6a3ead7c2bd35bbea1c6d704a4f89a4c8a2.tar.gz
poezio-2b42c6a3ead7c2bd35bbea1c6d704a4f89a4c8a2.tar.bz2
poezio-2b42c6a3ead7c2bd35bbea1c6d704a4f89a4c8a2.tar.xz
poezio-2b42c6a3ead7c2bd35bbea1c6d704a4f89a4c8a2.zip
Update setup.py to use distutils
(use new default directory, install the plugins as a separate python moduleā€¦)
Diffstat (limited to 'src/poezio.py')
-rw-r--r--src/poezio.py6
1 files changed, 4 insertions, 2 deletions
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