diff options
author | RaNaN <Mast3rRaNaN@hotmail.de> | 2013-03-07 16:51:17 +0100 |
---|---|---|
committer | RaNaN <Mast3rRaNaN@hotmail.de> | 2013-03-07 16:51:17 +0100 |
commit | b1e75df11fd3921dc38615508c356656fc700450 (patch) | |
tree | 42ea5032a793921528899d84eed4cba085e5a2ee | |
parent | working search for files (diff) | |
parent | HTTPRequest: fixed variable name (diff) | |
download | pyload-b1e75df11fd3921dc38615508c356656fc700450.tar.xz |
Merge pull request #33 from stickell/patch-3
HTTPRequest: fixed variable name
-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 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) |