diff options
-rw-r--r-- | module/plugins/RapidshareCom.py | 5 | ||||
-rw-r--r-- | module/plugins/UploadedTo.py | 5 |
2 files changed, 6 insertions, 4 deletions
diff --git a/module/plugins/RapidshareCom.py b/module/plugins/RapidshareCom.py index 73424696e..7706a7cf7 100644 --- a/module/plugins/RapidshareCom.py +++ b/module/plugins/RapidshareCom.py @@ -203,8 +203,9 @@ class RapidshareCom(Plugin): def check_file(self, local_file): if self.api_data and self.api_data["checksum"]: h = hashlib.md5() - with open(local_file, "rb") as f: - h.update(f.read()) + f = open(local_file, "rb"): + h.update(f.read()) + f.close() hexd = h.hexdigest() if hexd == self.api_data["checksum"]: return (True, 0) diff --git a/module/plugins/UploadedTo.py b/module/plugins/UploadedTo.py index 9ae008480..bda0bf899 100644 --- a/module/plugins/UploadedTo.py +++ b/module/plugins/UploadedTo.py @@ -145,8 +145,9 @@ class UploadedTo(Plugin): def check_file(self, local_file): if self.api_data and self.api_data["checksum"]: h = hashlib.sha1() - with open(local_file, "rb") as f: - h.update(f.read()) + f = open(local_file, "rb"): + h.update(f.read()) + f.close() hexd = h.hexdigest() if hexd == self.api_data["checksum"]: return (True, 0) |