diff options
author | Walter Purcaro <vuolter@gmail.com> | 2015-02-08 02:07:14 +0100 |
---|---|---|
committer | Walter Purcaro <vuolter@gmail.com> | 2015-02-08 02:15:50 +0100 |
commit | 30f247b9bb25cc6cc049a87c9525b7981e5673ea (patch) | |
tree | 44b05143f41f5e7f63dfde33a34be73b006b093e /module/plugins/hoster/ZippyshareCom.py | |
parent | [BasketbuildCom] Improved __pattern__ (diff) | |
download | pyload-30f247b9bb25cc6cc049a87c9525b7981e5673ea.tar.xz |
[ZippyshareCom] Typo
Diffstat (limited to 'module/plugins/hoster/ZippyshareCom.py')
-rw-r--r-- | module/plugins/hoster/ZippyshareCom.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/module/plugins/hoster/ZippyshareCom.py b/module/plugins/hoster/ZippyshareCom.py index ad4b49b44..ac5e744a7 100644 --- a/module/plugins/hoster/ZippyshareCom.py +++ b/module/plugins/hoster/ZippyshareCom.py @@ -9,7 +9,7 @@ from module.plugins.internal.SimpleHoster import SimpleHoster, create_getInfo class ZippyshareCom(SimpleHoster): __name__ = "ZippyshareCom" __type__ = "hoster" - __version__ = "0.69" + __version__ = "0.70" __pattern__ = r'http://www\d{0,2}\.zippyshare\.com/v(/|iew\.jsp.*key=)(?P<KEY>[\w^_]+)' @@ -51,7 +51,7 @@ class ZippyshareCom(SimpleHoster): def get_checksum(self): try: - z = re.search(r'var z = (\d+)', self.html).group(1) + z = int(re.search(r'var z = (\d+)', self.html).group(1)) n = (z - 3) % 2 b = (z - 3) % 3 |