diff options
author | RaNaN <Mast3rRaNaN@hotmail.de> | 2011-01-24 19:29:40 +0100 |
---|---|---|
committer | RaNaN <Mast3rRaNaN@hotmail.de> | 2011-01-24 19:29:40 +0100 |
commit | 7345fad02e7698ce439bcad00619060dd8eed547 (patch) | |
tree | 2d0c7929af9c22b14df336c0a2fe6bd1a4ad1cc6 /module | |
parent | 4Shared plugin (diff) | |
download | pyload-7345fad02e7698ce439bcad00619060dd8eed547.tar.xz |
closed #216
Diffstat (limited to 'module')
-rw-r--r-- | module/network/HTTPRequest.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/module/network/HTTPRequest.py b/module/network/HTTPRequest.py index fe4a577b6..67d1e0f19 100644 --- a/module/network/HTTPRequest.py +++ b/module/network/HTTPRequest.py @@ -80,7 +80,7 @@ class HTTPRequest(): def setInterface(self, interface, proxy): if interface and interface.lower() != "none": - self.c.setopt(pycurl.INTERFACE, interface) + self.c.setopt(pycurl.INTERFACE, str(interface)) if proxy: if proxy["type"] == "socks4": |