diff options
author | Jeix <devnull@localhost> | 2010-12-01 19:19:48 +0100 |
---|---|---|
committer | Jeix <devnull@localhost> | 2010-12-01 19:19:48 +0100 |
commit | 8922d93070ae079a02e14e60b6ac20da64fc23d3 (patch) | |
tree | 351205d95835fb3bf59a7e49091b69223d15c028 /module/plugins/Plugin.py | |
parent | correct invalid DLCs (diff) | |
download | pyload-8922d93070ae079a02e14e60b6ac20da64fc23d3.tar.xz |
Diffstat (limited to 'module/plugins/Plugin.py')
-rw-r--r-- | module/plugins/Plugin.py | 4 |
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() |