diff options
author | RaNaN <Mast3rRaNaN@hotmail.de> | 2011-07-05 00:57:14 +0200 |
---|---|---|
committer | RaNaN <Mast3rRaNaN@hotmail.de> | 2011-07-05 00:57:14 +0200 |
commit | bd4beeeefff3f9de7ece2cdcc6a619154bc3d83b (patch) | |
tree | 8126fe2f5416371b871d704f63c07e4cb0313e64 /module/plugins/crypter | |
parent | fixed some bugs, new externalscripts plugin (diff) | |
download | pyload-bd4beeeefff3f9de7ece2cdcc6a619154bc3d83b.tar.xz |
sj fix
Diffstat (limited to 'module/plugins/crypter')
-rw-r--r-- | module/plugins/crypter/SerienjunkiesOrg.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/module/plugins/crypter/SerienjunkiesOrg.py b/module/plugins/crypter/SerienjunkiesOrg.py index 1e322a3a3..21afc88e8 100644 --- a/module/plugins/crypter/SerienjunkiesOrg.py +++ b/module/plugins/crypter/SerienjunkiesOrg.py @@ -133,8 +133,8 @@ class SerienjunkiesOrg(Crypter): result = self.decryptCaptcha(str(captchaUrl), imgtype="png") sinp = form.find(attrs={"name":"s"}) - self.req.lastURL = url - sj = self.req.load(str(url), post={'s': sinp["value"], 'c': result, 'action': "Download"}) + self.req.lastURL = str(url) + sj = self.load(str(url), post={'s': sinp["value"], 'c': result, 'action': "Download"}) soup = BeautifulSoup(sj) rawLinks = soup.findAll(attrs={"action": re.compile("^http://download.serienjunkies.org/")}) |