diff options
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 42640703c..6a6687eae 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] |