From cc09dae0fe14623d42dedfe9f0dd153e5d4dccea Mon Sep 17 00:00:00 2001 From: Stefan Bethge Date: Wed, 29 Nov 2006 22:57:37 +0000 Subject: [PATCH] call missing init for zeroconf vcard dummy --- src/common/zeroconf/connection_handlers_zeroconf.py | 1 + 1 file changed, 1 insertion(+) diff --git a/src/common/zeroconf/connection_handlers_zeroconf.py b/src/common/zeroconf/connection_handlers_zeroconf.py index 6178e60c5..03d7264b1 100644 --- a/src/common/zeroconf/connection_handlers_zeroconf.py +++ b/src/common/zeroconf/connection_handlers_zeroconf.py @@ -606,6 +606,7 @@ class ConnectionBytestream: class ConnectionHandlersZeroconf(ConnectionVcard, ConnectionBytestream): def __init__(self): + ConnectionVcard.__init__(self) ConnectionBytestream.__init__(self) # List of IDs we are waiting answers for {id: (type_of_request, data), } self.awaiting_answers = {}