summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGravatar RaNaN <Mast3rRaNaN@hotmail.de> 2013-03-07 16:51:17 +0100
committerGravatar RaNaN <Mast3rRaNaN@hotmail.de> 2013-03-07 16:51:17 +0100
commitb1e75df11fd3921dc38615508c356656fc700450 (patch)
tree42ea5032a793921528899d84eed4cba085e5a2ee
parentworking search for files (diff)
parentHTTPRequest: fixed variable name (diff)
downloadpyload-b1e75df11fd3921dc38615508c356656fc700450.tar.xz
Merge pull request #33 from stickell/patch-3
HTTPRequest: fixed variable name
-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)