diff options
author | Walter Purcaro <vuolter@users.noreply.github.com> | 2015-06-08 06:08:01 +0200 |
---|---|---|
committer | Walter Purcaro <vuolter@users.noreply.github.com> | 2015-06-08 06:08:01 +0200 |
commit | 0e1ef9bc01579328e17e79416fa3c1c7b77adcc8 (patch) | |
tree | 7254ea66d7efee78ececda3ab3eeeb6548b22bca /module/plugins/hooks/Checksum.py | |
parent | Move base plugins to internal folder (diff) | |
download | pyload-0e1ef9bc01579328e17e79416fa3c1c7b77adcc8.tar.xz |
Update everything
Diffstat (limited to 'module/plugins/hooks/Checksum.py')
-rw-r--r-- | module/plugins/hooks/Checksum.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/module/plugins/hooks/Checksum.py b/module/plugins/hooks/Checksum.py index ab7daf701..13374f7bd 100644 --- a/module/plugins/hooks/Checksum.py +++ b/module/plugins/hooks/Checksum.py @@ -7,7 +7,7 @@ import os import re import zlib -from module.plugins.Hook import Hook +from module.plugins.internal.Hook import Hook from module.utils import save_join, fs_encode @@ -38,7 +38,7 @@ def computeChecksum(local_file, algorithm): class Checksum(Hook): __name__ = "Checksum" __type__ = "hook" - __version__ = "0.16" + __version__ = "0.17" __config__ = [("check_checksum", "bool", "Check checksum? (If False only size will be verified)", True), ("check_action", "fail;retry;nothing", "What to do if check fails?", "retry"), |