diff options
author | Walter Purcaro <vuolter@gmail.com> | 2014-10-19 14:30:21 +0200 |
---|---|---|
committer | Walter Purcaro <vuolter@gmail.com> | 2014-10-19 14:30:21 +0200 |
commit | d1342491fe8b1caea66f0a3fa255e57b3503f082 (patch) | |
tree | 3cf096461ed3f0845bfc660425f3708f26a3406c /module/network | |
parent | Improve packagetools regex (diff) | |
download | pyload-d1342491fe8b1caea66f0a3fa255e57b3503f082.tar.xz |
Fix XDCCRequest _keepAlive
Diffstat (limited to 'module/network')
-rw-r--r-- | module/network/XDCCRequest.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/module/network/XDCCRequest.py b/module/network/XDCCRequest.py index f03798c17..e395e01f0 100644 --- a/module/network/XDCCRequest.py +++ b/module/network/XDCCRequest.py @@ -127,7 +127,7 @@ class XDCCRequest(): return filename - def _keepAlive(self, sock, readbuffer): + def _keepAlive(self, sock, *readbuffer): fdset = select([sock], [], [], 0) if sock not in fdset[0]: return |