summaryrefslogtreecommitdiffstats
path: root/module/plugins/Plugin.py
diff options
context:
space:
mode:
authorGravatar Jeix <devnull@localhost> 2010-12-01 19:19:48 +0100
committerGravatar Jeix <devnull@localhost> 2010-12-01 19:19:48 +0100
commit8922d93070ae079a02e14e60b6ac20da64fc23d3 (patch)
tree351205d95835fb3bf59a7e49091b69223d15c028 /module/plugins/Plugin.py
parentcorrect invalid DLCs (diff)
downloadpyload-8922d93070ae079a02e14e60b6ac20da64fc23d3.tar.xz
fixed Megaupload, added Uploading.com beta, closed #177 #182
Diffstat (limited to 'module/plugins/Plugin.py')
-rw-r--r--module/plugins/Plugin.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/module/plugins/Plugin.py b/module/plugins/Plugin.py
index d642df728..34c06539a 100644
--- a/module/plugins/Plugin.py
+++ b/module/plugins/Plugin.py
@@ -278,11 +278,11 @@ class Plugin(object):
return result
- def load(self, url, get={}, post={}, ref=True, cookies=True, just_header=False):
+ def load(self, url, get={}, post={}, ref=True, cookies=True, just_header=False, no_post_encode=False, raw_cookies={}):
""" returns the content loaded """
if self.pyfile.abort: raise Abort
- res = self.req.load(url, get, post, ref, cookies, just_header)
+ res = self.req.load(url, get, post, ref, cookies, just_header, no_post_encode, raw_cookies)
if self.core.debug:
from inspect import currentframe
frame = currentframe()