From 41fec54c305d4a81245e9e294c7fc29fed9b7b00 Mon Sep 17 00:00:00 2001 From: Matthias Schiffer Date: Sun, 2 May 2010 15:03:32 +0200 Subject: Added config file --- curunir.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'curunir.py') diff --git a/curunir.py b/curunir.py index 3c6c442..7d14410 100644 --- a/curunir.py +++ b/curunir.py @@ -1,6 +1,7 @@ from connection.xmpp import XMPPConnection import signal, sys +from config import config run = True @@ -12,7 +13,7 @@ signal.signal(signal.SIGINT, exithandler) signal.signal(signal.SIGTERM, exithandler) signal.signal(signal.SIGQUIT, exithandler) -connection = XMPPConnection() +connection = XMPPConnection(config) connection.connect() while run: -- cgit v1.2.3