From 1d87384800ed22e71ec4836aa55b1fcd54aa77d8 Mon Sep 17 00:00:00 2001 From: Yann Leboulanger <asterix@lagaule.org> Date: Sat, 7 May 2005 17:02:32 +0000 Subject: [PATCH] bugfix from Alexey about proxy, can someone test if it works ? --- src/common/xmpp/transports.py | 1 + 1 file changed, 1 insertion(+) diff --git a/src/common/xmpp/transports.py b/src/common/xmpp/transports.py index 7af9dcfa89..e7a22731fd 100644 --- a/src/common/xmpp/transports.py +++ b/src/common/xmpp/transports.py @@ -150,6 +150,7 @@ class HTTPPROXYsocket(TCPsocket): and optional keys 'user' and 'password' to use for authentication. 'server' argument is a tuple of host and port - just like TCPsocket uses. """ TCPsocket.__init__(self,server) + self.DBG_LINE=DBG_CONNECT_PROXY self._proxy=proxy def plugin(self, owner): -- GitLab