Small cleanup

This commit is contained in:
Eitan Adler 2013-04-09 19:25:08 -04:00
parent 46eeffee39
commit 1bb3f2aefb

View File

@ -17,10 +17,7 @@
# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
# THE SOFTWARE. # THE SOFTWARE.
from oyoyo.client import IRCClient from oyoyo.client import IRCClient
from oyoyo.parse import parse_nick
import logging import logging
import botconfig import botconfig
import time import time
@ -28,9 +25,11 @@ import traceback
import modules.common import modules.common
import sys import sys
class UTCFormatter(logging.Formatter): class UTCFormatter(logging.Formatter):
converter = time.gmtime converter = time.gmtime
def main(): def main():
if botconfig.DEBUG_MODE: if botconfig.DEBUG_MODE:
logging.basicConfig(level=logging.DEBUG) logging.basicConfig(level=logging.DEBUG)
@ -48,12 +47,12 @@ def main():
formatter = UTCFormatter('[%(asctime)s] %(message)s', '%d/%b/%Y %H:%M:%S') formatter = UTCFormatter('[%(asctime)s] %(message)s', '%d/%b/%Y %H:%M:%S')
for handler in logger.handlers: for handler in logger.handlers:
handler.setFormatter(formatter) handler.setFormatter(formatter)
cli = IRCClient( cli = IRCClient(
{"privmsg":modules.common.on_privmsg, {"privmsg": modules.common.on_privmsg,
"notice":lambda a, b, c, d: modules.common.on_privmsg(a, b, c, d, True), "notice": lambda a, b, c, d: modules.common.on_privmsg(a, b, c, d, True),
"":modules.common.__unhandled__}, "": modules.common.__unhandled__},
host=botconfig.HOST, host=botconfig.HOST,
port=botconfig.PORT, port=botconfig.PORT,
authname=botconfig.USERNAME, authname=botconfig.USERNAME,
password=botconfig.PASS, password=botconfig.PASS,
@ -61,7 +60,7 @@ def main():
sasl_auth=botconfig.SASL_AUTHENTICATION, sasl_auth=botconfig.SASL_AUTHENTICATION,
use_ssl=botconfig.USE_SSL, use_ssl=botconfig.USE_SSL,
connect_cb=modules.common.connect_callback connect_cb=modules.common.connect_callback
) )
cli.mainLoop() cli.mainLoop()