diff options
author | Walter Purcaro <vuolter@gmail.com> | 2014-09-28 00:39:28 +0200 |
---|---|---|
committer | Walter Purcaro <vuolter@gmail.com> | 2014-09-28 00:39:28 +0200 |
commit | 13d788058ce3ebada150ebbe7c1a9415f76253d7 (patch) | |
tree | f62e184ecd86cfa795c4e0262836be98616edc57 /module/plugins/hoster/ZippyshareCom.py | |
parent | [ZippyshareCom] Fix alternative checksum type (diff) | |
download | pyload-13d788058ce3ebada150ebbe7c1a9415f76253d7.tar.xz |
[CatShareNet] Fixup
Diffstat (limited to 'module/plugins/hoster/ZippyshareCom.py')
-rw-r--r-- | module/plugins/hoster/ZippyshareCom.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/module/plugins/hoster/ZippyshareCom.py b/module/plugins/hoster/ZippyshareCom.py index ef6b58c27..42640703c 100644 --- a/module/plugins/hoster/ZippyshareCom.py +++ b/module/plugins/hoster/ZippyshareCom.py @@ -55,7 +55,7 @@ class ZippyshareCom(SimpleHoster): a = map(lambda x: int(x), m[0]) b = map(lambda x: int(x), m[1]) - # Checksum is calculated as (a*b+19) or (a*b), where a and b are the result of modulo calculations + # Checksum is calculated as (a * b + 19) or (a + b), where a and b are the result of modulo calculations a = a[0] % a[1] b = b[0] % b[1] |