diff options
author | Stefano <l.stickell@yahoo.it> | 2013-03-06 23:35:37 +0100 |
---|---|---|
committer | Stefano <l.stickell@yahoo.it> | 2013-03-06 23:35:37 +0100 |
commit | 4b8bbd8ac6f712a35655000bae57f2d30c11ff36 (patch) | |
tree | 42ea5032a793921528899d84eed4cba085e5a2ee /module/network/HTTPRequest.py | |
parent | working search for files (diff) | |
download | pyload-4b8bbd8ac6f712a35655000bae57f2d30c11ff36.tar.xz |
HTTPRequest: fixed variable name
Diffstat (limited to 'module/network/HTTPRequest.py')
-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) |