diff options
author | RaNaN <Mast3rRaNaN@hotmail.de> | 2010-08-08 23:00:43 +0200 |
---|---|---|
committer | RaNaN <Mast3rRaNaN@hotmail.de> | 2010-08-08 23:00:43 +0200 |
commit | 8561c9fc7973964706c2ce4949e0bc0e5bc43093 (patch) | |
tree | e67db5d0c8707d64d92abbe9c7195591af6b8b6b /module/network | |
parent | multi home fix (diff) | |
download | pyload-8561c9fc7973964706c2ce4949e0bc0e5bc43093.tar.xz |
MU link checker
Diffstat (limited to 'module/network')
-rwxr-xr-x | module/network/Request.py | 4 |
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 |