From f2271ced531573bfe353ba5f99c7c5f13fe6789d Mon Sep 17 00:00:00 2001 From: Yann Leboulanger Date: Sun, 1 Mar 2015 15:07:14 +0100 Subject: [PATCH] fix seclabel. see #7010 --- src/common/connection_handlers.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/common/connection_handlers.py b/src/common/connection_handlers.py index 86a5f034a..1d79b7643 100644 --- a/src/common/connection_handlers.py +++ b/src/common/connection_handlers.py @@ -1621,7 +1621,7 @@ ConnectionHandlersBase, ConnectionJingle, ConnectionIBBytestream): def seclabel_catalogue_request(self, to, callback): if to not in self.seclabel_catalogues: - self.seclabel_catalogues[to] = [[], None, None] + self.seclabel_catalogues[to] = [[], None, None, None] self.seclabel_catalogues[to][0].append(callback) def _rosterSetCB(self, con, iq_obj):