diff options
author | 2014-10-05 02:27:07 +0200 | |
---|---|---|
committer | 2014-10-05 02:27:07 +0200 | |
commit | a9117257f71984d553811a605150acb5d1b499ce (patch) | |
tree | a0e55a4b9ba57a94f7a4be06f7eecc4dc44acb51 /module/plugins/crypter/HoerbuchIn.py | |
parent | Spare __pattern__ cosmetics (diff) | |
download | pyload-a9117257f71984d553811a605150acb5d1b499ce.tar.xz |
Better import lib header
Diffstat (limited to 'module/plugins/crypter/HoerbuchIn.py')
-rw-r--r-- | module/plugins/crypter/HoerbuchIn.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/module/plugins/crypter/HoerbuchIn.py b/module/plugins/crypter/HoerbuchIn.py index 924ce5d3a..a283ff823 100644 --- a/module/plugins/crypter/HoerbuchIn.py +++ b/module/plugins/crypter/HoerbuchIn.py @@ -2,7 +2,7 @@ import re -from module.lib.BeautifulSoup import BeautifulSoup, BeautifulStoneSoup +from BeautifulSoup import BeautifulSoup, BeautifulStoneSoup from module.plugins.Crypter import Crypter @@ -45,7 +45,7 @@ class HoerbuchIn(Crypter): url = m.group(0) self.pyfile.url = url - src = self.req.load(url, post={"viewed": "adpg"}) + src = self.load(url, post={"viewed": "adpg"}) links = [] pattern = re.compile("http://www\.hoerbuch\.in/protection/(\w+)/(.*?)\"") |