Conflicts:
	irc.py
	modules/oblique.py
	modules/startup.py
This commit is contained in:
mutantmonkey
2012-02-17 22:10:05 -05:00
4 changed files with 7 additions and 3 deletions

2
irc.py
View File

@@ -51,7 +51,7 @@ class Bot(asynchat.async_chat):
# asynchat.async_chat.push(self, *args, **kargs)
def __write(self, args, text=None):
# print '%r %r %r' % (self, args, text)
# print 'PUSH: %r %r %r' % (self, args, text)
try:
if text is not None:
# 510 because CR and LF count too, as nyuszika7h points out