From c70ed9aa4c8664b0cb41f85469b62daab69eb3f6 Mon Sep 17 00:00:00 2001 From: Helmut Grohne Date: Fri, 8 Feb 2019 19:21:27 +0100 Subject: make depcheck.py compatible with stretch --- depcheck.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'depcheck.py') diff --git a/depcheck.py b/depcheck.py index f1c1a1f..4089ec5 100755 --- a/depcheck.py +++ b/depcheck.py @@ -245,7 +245,8 @@ class DebianMirror: if self.byhash: listname = "%s/by-hash/%s/%s" % (os.path.dirname(listname), self.hashfunc, hashvalue) - with requests.get(self.get_uri(listname), stream=True) as resp: + with contextlib.closing(requests.get(self.get_uri(listname), + stream=True)) as resp: resp.raise_for_status() it = resp.iter_content(65536) it = hash_check(it, hashlib.new(self.hashfunc), hashvalue) -- cgit v1.2.3