From 1ebe58788655b400e46292fb2994f1c5ff8b7044 Mon Sep 17 00:00:00 2001 From: Yann Leboulanger Date: Fri, 13 Jun 2008 15:59:04 +0000 Subject: [PATCH] fix number of parameters to session.receives in zeroconf. Fixes #4015 --- src/common/zeroconf/connection_handlers_zeroconf.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/common/zeroconf/connection_handlers_zeroconf.py b/src/common/zeroconf/connection_handlers_zeroconf.py index 3befa52a3..ba43b684c 100644 --- a/src/common/zeroconf/connection_handlers_zeroconf.py +++ b/src/common/zeroconf/connection_handlers_zeroconf.py @@ -460,7 +460,7 @@ class ConnectionHandlersZeroconf(ConnectionVcard, ConnectionBytestream, connecti else: # XXX this shouldn't be hardcoded if isinstance(session, ChatControlSession): - session.received(frm, msgtxt, tim, encrypted, subject, msg) + session.received(frm, msgtxt, tim, encrypted, msg) else: session.received(msg) # END messageCB