diff options
author | Lance Stout <lancestout@gmail.com> | 2014-05-16 08:43:39 -0700 |
---|---|---|
committer | Lance Stout <lancestout@gmail.com> | 2014-05-16 08:43:39 -0700 |
commit | d94dd486fec75944ac36466182dbe087bb88b5f0 (patch) | |
tree | 628bb448af8824089cbcbbbded9630697369cc4c /sleekxmpp/xmlstream/xmlstream.py | |
parent | 6ecc39b816b3ebf67922939748323164e89672d9 (diff) | |
parent | 9c240df9dbfae1dd17d362b2459ae859210f4489 (diff) | |
download | slixmpp-d94dd486fec75944ac36466182dbe087bb88b5f0.tar.gz slixmpp-d94dd486fec75944ac36466182dbe087bb88b5f0.tar.bz2 slixmpp-d94dd486fec75944ac36466182dbe087bb88b5f0.tar.xz slixmpp-d94dd486fec75944ac36466182dbe087bb88b5f0.zip |
Merge pull request #294 from mofrank/develop
Fixes log.debug message in _connect_proxy
Diffstat (limited to 'sleekxmpp/xmlstream/xmlstream.py')
-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 = '' |