summaryrefslogtreecommitdiffstats
path: root/pyload/remote/thriftbackend/ThriftClient.py
diff options
context:
space:
mode:
Diffstat (limited to 'pyload/remote/thriftbackend/ThriftClient.py')
-rw-r--r--pyload/remote/thriftbackend/ThriftClient.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/pyload/remote/thriftbackend/ThriftClient.py b/pyload/remote/thriftbackend/ThriftClient.py
index 4f1c8dcc2..b018fbcc4 100644
--- a/pyload/remote/thriftbackend/ThriftClient.py
+++ b/pyload/remote/thriftbackend/ThriftClient.py
@@ -49,10 +49,10 @@ class ThriftClient(object):
correct = self.client.login(user, password)
except error, e:
if e.args and e.args[0] == 104:
- #connection reset by peer, probably wants ssl
+ # connection reset by peer, probably wants ssl
try:
self.createConnection(host, port, True)
- #set timeout or a ssl socket will block when querying none ssl server
+ # set timeout or a ssl socket will block when querying none ssl server
self.socket.setTimeout(10)
except ImportError: