summaryrefslogtreecommitdiffstats
path: root/module/network/HTTPRequest.py
diff options
context:
space:
mode:
authorGravatar Stefano <l.stickell@yahoo.it> 2013-03-06 23:35:37 +0100
committerGravatar Stefano <l.stickell@yahoo.it> 2013-03-06 23:35:37 +0100
commit4b8bbd8ac6f712a35655000bae57f2d30c11ff36 (patch)
tree42ea5032a793921528899d84eed4cba085e5a2ee /module/network/HTTPRequest.py
parentworking search for files (diff)
downloadpyload-4b8bbd8ac6f712a35655000bae57f2d30c11ff36.tar.xz
HTTPRequest: fixed variable name
Diffstat (limited to 'module/network/HTTPRequest.py')
-rw-r--r--module/network/HTTPRequest.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/module/network/HTTPRequest.py b/module/network/HTTPRequest.py
index 4b45e10a2..990148e0f 100644
--- a/module/network/HTTPRequest.py
+++ b/module/network/HTTPRequest.py
@@ -160,7 +160,7 @@ class HTTPRequest():
url = "%s?%s" % (url, get)
self.c.setopt(pycurl.URL, url)
- self.c.lastUrl = url
+ self.lastURL = url
if post:
self.c.setopt(pycurl.POST, 1)