Remove print unhandled in daemon mode

This commit is contained in:
nemunaire 2015-07-16 20:38:04 +02:00
commit a4fd04c310
6 changed files with 8 additions and 13 deletions

View file

@ -96,7 +96,7 @@ class IRC(SocketServer):
import nemubot
self.ctcp_capabilities["ACTION"] = lambda msg, cmds: print ("ACTION receive: %s" % cmds)
self.ctcp_capabilities["ACTION"] = lambda msg, cmds: None
self.ctcp_capabilities["CLIENTINFO"] = _ctcp_clientinfo
#self.ctcp_capabilities["DCC"] = _ctcp_dcc
self.ctcp_capabilities["FINGER"] = lambda msg, cmds: "VERSION nemubot v%s" % nemubot.__version__