diff options
author | mofrank <mfrank@navvo.com> | 2014-05-16 08:49:01 -0500 |
---|---|---|
committer | mofrank <mfrank@navvo.com> | 2014-05-16 08:49:01 -0500 |
commit | 9c240df9dbfae1dd17d362b2459ae859210f4489 (patch) | |
tree | d34e8ad1fe9c0f8983bcfaa027c3eb65988a3042 /sleekxmpp | |
parent | ef2f5d29788218f679cd878e4e25bbd61545fef4 (diff) | |
download | slixmpp-9c240df9dbfae1dd17d362b2459ae859210f4489.tar.gz slixmpp-9c240df9dbfae1dd17d362b2459ae859210f4489.tar.bz2 slixmpp-9c240df9dbfae1dd17d362b2459ae859210f4489.tar.xz slixmpp-9c240df9dbfae1dd17d362b2459ae859210f4489.zip |
Fixes log.debug message in _connect_proxy
Diffstat (limited to 'sleekxmpp')
-rw-r--r-- | sleekxmpp/xmlstream/xmlstream.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sleekxmpp/xmlstream/xmlstream.py b/sleekxmpp/xmlstream/xmlstream.py index 3bc1f652..bdede5c5 100644 --- a/sleekxmpp/xmlstream/xmlstream.py +++ b/sleekxmpp/xmlstream/xmlstream.py @@ -611,7 +611,7 @@ class XMLStream(object): headers = '\r\n'.join(headers) + '\r\n\r\n' try: - log.debug("Connecting to proxy: %s:%s", address) + log.debug("Connecting to proxy: %s:%s", *address) self.socket.connect(address) self.send_raw(headers, now=True) resp = '' |