summaryrefslogtreecommitdiffstats
path: root/module/network/RequestFactory.py
diff options
context:
space:
mode:
Diffstat (limited to 'module/network/RequestFactory.py')
-rw-r--r--module/network/RequestFactory.py5
1 files changed, 3 insertions, 2 deletions
diff --git a/module/network/RequestFactory.py b/module/network/RequestFactory.py
index 9b32ed570..44f66efab 100644
--- a/module/network/RequestFactory.py
+++ b/module/network/RequestFactory.py
@@ -58,9 +58,10 @@ class RequestFactory():
""" returns a http request, dont forget to close it ! """
return HTTPRequest(CookieJar(None), self.getOptions())
- def getURL(self, url, get={}, post={}, multipart=False):
+ def getURL(self, *args, **kwargs):
+ """ see HTTPRequest for argument list """
h = HTTPRequest(None, self.getOptions())
- rep = h.load(url, get, post, multipart=multipart)
+ rep = h.load(*args, **kwargs)
h.close()
return rep