diff options
author | Nippey <matthias@dornuweb.de> | 2015-09-02 17:39:11 +0200 |
---|---|---|
committer | Nippey <matthias@dornuweb.de> | 2015-09-02 17:39:11 +0200 |
commit | 7ba2c2414ccc0ac141cea5bfe646d86b7d94a3ad (patch) | |
tree | e5e21612cf2b95f5744b7cecdb28a7ef103543f0 /module | |
parent | Merge pull request #1798 from estaban/patch-8 (diff) | |
download | pyload-7ba2c2414ccc0ac141cea5bfe646d86b7d94a3ad.tar.xz |
Update Checksum.py
The "is" operator checks for object equality, but in this case we want to compare integers.
Reason of change:
02.09.2015 17:32:23 WARNING HOOK Checksum: File abcdefg.rar has incorrect size: 106954752 B (106954752 expected)
Diffstat (limited to 'module')
-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 da4d35df1..64c5fa3ff 100644 --- a/module/plugins/hooks/Checksum.py +++ b/module/plugins/hooks/Checksum.py @@ -38,7 +38,7 @@ def compute_checksum(local_file, algorithm): class Checksum(Addon): __name__ = "Checksum" __type__ = "hook" - __version__ = "0.20" + __version__ = "0.21" __status__ = "testing" __config__ = [("check_checksum", "bool" , "Check checksum? (If False only size will be verified)", True ), @@ -114,7 +114,7 @@ class Checksum(Addon): api_size = int(data['size']) file_size = os.path.getsize(local_file) - if api_size is not file_size: + if api_size != file_size: self.log_warning(_("File %s has incorrect size: %d B (%d expected)") % (pyfile.name, file_size, api_size)) self.check_failed(pyfile, local_file, "Incorrect file size") |