diff options
author | 2013-05-17 11:29:40 +0200 | |
---|---|---|
committer | 2013-05-17 11:29:40 +0200 | |
commit | 89b4d99477345112448cd2fe840489669edd1013 (patch) | |
tree | 914bbf054d9c973c3634b4fa0f4dfe63c891acbe | |
parent | CzshareCom: content-disposition (diff) | |
download | pyload-89b4d99477345112448cd2fe840489669edd1013.tar.xz |
CzshareCom: no relogin
see #111
-rw-r--r-- | module/plugins/accounts/CzshareCom.py | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/module/plugins/accounts/CzshareCom.py b/module/plugins/accounts/CzshareCom.py index 97c2ddca6..7b1a8edc5 100644 --- a/module/plugins/accounts/CzshareCom.py +++ b/module/plugins/accounts/CzshareCom.py @@ -25,7 +25,7 @@ from module.plugins.Account import Account class CzshareCom(Account): __name__ = "CzshareCom" - __version__ = "0.12" + __version__ = "0.13" __type__ = "account" __description__ = """czshare.com account plugin""" __author_name__ = ("zoidberg", "stickell") @@ -34,7 +34,6 @@ class CzshareCom(Account): CREDIT_LEFT_PATTERN = r'<tr class="active">\s*<td>([0-9 ,]+) (KiB|MiB|GiB)</td>\s*<td>([^<]*)</td>\s*</tr>' def loadAccountInfo(self, user, req): - self.relogin(user) html = req.load("http://czshare.com/prehled_kreditu/") found = re.search(self.CREDIT_LEFT_PATTERN, html) |