From: Ansgar Burchardt Date: Sun, 26 May 2013 01:49:18 +0000 (+0200) Subject: dak/check_archive.py: multi-archive adjustment for check_checksums() X-Git-Url: https://git.decadent.org.uk/gitweb/?a=commitdiff_plain;h=ed87a521d3d7a3eb3af498f58ddb28e053b7a6d3;p=dak.git dak/check_archive.py: multi-archive adjustment for check_checksums() Locations went away with the multi-archive changes, but check_checksums() was still using them. Reported-by: Matthias Klumpp --- diff --git a/dak/check_archive.py b/dak/check_archive.py index 6f16aecc..926b4fb5 100755 --- a/dak/check_archive.py +++ b/dak/check_archive.py @@ -274,7 +274,7 @@ def check_checksums(): print "Checking file checksums & sizes..." for f in q: - filename = os.path.abspath(os.path.join(f.location.path, f.filename)) + filename = f.fullpath try: fi = utils.open_file(filename)