From 7f7e803075df7f2d1ba2ee0661ced71ee8909d24 Mon Sep 17 00:00:00 2001 From: "Eric S. Raymond" Date: Sun, 26 Aug 2012 08:01:20 -0400 Subject: [PATCH] Typo fix and a caveat. --- irker.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/irker.py b/irker.py index 18f1141..8b07e35 100755 --- a/irker.py +++ b/irker.py @@ -5,12 +5,13 @@ irker - a simple IRC multiplexer daemon Takes JSON objects of the form {'channel':, 'message':} and relays messages to IRC channels. -Run this as a daemon in order to maimntain stateful connections to IRC +Run this as a daemon in order to maintain stateful connections to IRC servers; this will allow it to respond to server pings and minimize join/leave traffic. Requires Python 2.6. +TO-DO: some servers have a limit of 20 channels per server connection. """ import os, sys, json, irclib, exceptions, getopt, urlparse import threading, Queue -- 2.26.2