summaryrefslogtreecommitdiffstats
path: root/curunir.py
diff options
context:
space:
mode:
authorMatthias Schiffer <matthias@gamezock.de>2010-05-03 03:37:21 +0200
committerMatthias Schiffer <matthias@gamezock.de>2010-05-03 03:37:21 +0200
commit06e947d1a30abb9578ae820780471a3e9d7affac (patch)
tree8ec78194aa38d4ff6680032f573558ff6b0e418e /curunir.py
parent323d31514f7e438df5883ad6cb9e17cce6a296b3 (diff)
downloadcurunir-06e947d1a30abb9578ae820780471a3e9d7affac.tar
curunir-06e947d1a30abb9578ae820780471a3e9d7affac.zip
Added credits
Diffstat (limited to 'curunir.py')
-rw-r--r--curunir.py5
1 files changed, 5 insertions, 0 deletions
diff --git a/curunir.py b/curunir.py
index 99fd77f..3c0d933 100644
--- a/curunir.py
+++ b/curunir.py
@@ -25,13 +25,18 @@ def exithandler(signum, frame):
global run
run = False
+print 'Starting Curunir 0.1'
+
signal.signal(signal.SIGINT, exithandler)
signal.signal(signal.SIGTERM, exithandler)
signal.signal(signal.SIGQUIT, exithandler)
+print 'Loading modules...'
+
modman = ModuleManager(config)
connection = XMPPConnection(config, modman)
+print 'Connecting...'
connection.connect()
while run: