summaryrefslogtreecommitdiffstats
path: root/module/network
diff options
context:
space:
mode:
authorGravatar RaNaN <Mast3rRaNaN@hotmail.de> 2010-08-08 23:00:43 +0200
committerGravatar RaNaN <Mast3rRaNaN@hotmail.de> 2010-08-08 23:00:43 +0200
commit8561c9fc7973964706c2ce4949e0bc0e5bc43093 (patch)
treee67db5d0c8707d64d92abbe9c7195591af6b8b6b /module/network
parentmulti home fix (diff)
downloadpyload-8561c9fc7973964706c2ce4949e0bc0e5bc43093.tar.xz
MU link checker
Diffstat (limited to 'module/network')
-rwxr-xr-xmodule/network/Request.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/module/network/Request.py b/module/network/Request.py
index d1964d87f..7413358d7 100755
--- a/module/network/Request.py
+++ b/module/network/Request.py
@@ -378,12 +378,12 @@ class Request:
except:
pass
-def getURL(url):
+def getURL(url, get={}, post={}):
"""
currently used for update check
"""
req = Request()
- c = req.load(url)
+ c = req.load(url, get, post)
req.pycurl.close()
return c