Browse Source

Merge pull request #2180 from techmunk/2107

Deluge SSL negotiation errors on Windows machines.
pull/2167/merge
Ruud Burger 12 years ago
parent
commit
7660a3d78f
  1. 2
      libs/synchronousdeluge/transfer.py

2
libs/synchronousdeluge/transfer.py

@ -19,7 +19,7 @@ class DelugeTransfer(object):
self.disconnect()
self.sock = socket.create_connection(hostport)
self.conn = ssl.wrap_socket(self.sock)
self.conn = ssl.wrap_socket(self.sock, None, None, False, ssl.CERT_NONE, ssl.PROTOCOL_SSLv3)
self.connected = True
def disconnect(self):

Loading…
Cancel
Save