X-Git-Url: https://git.decadent.org.uk/gitweb/?a=blobdiff_plain;f=dak%2Fcruft_report.py;h=4c6d323e82c1d380e3e1f8c8c4f537c499491d5d;hb=386b8e180e28b9d5c65595b0cde7cd48fc7d0b74;hp=3c3d73cb8c5dbb58038f807b7d19f84d823fa574;hpb=fdf3c42445b4f11f4cd71634dd2b57cb7d7a4f36;p=dak.git diff --git a/dak/cruft_report.py b/dak/cruft_report.py index 3c3d73cb..4c6d323e 100755 --- a/dak/cruft_report.py +++ b/dak/cruft_report.py @@ -168,7 +168,7 @@ def parse_nfu(architecture): f.close() else: - utils.warn("No wanna-build dump file for architecture %s", architecture) + utils.warn("No wanna-build dump file for architecture %s" % architecture) return ret ################################################################################ @@ -428,6 +428,8 @@ def main (): for component in check_components: architectures = filter(utils.real_arch, database.get_suite_architectures(suite)) for architecture in architectures: + if component == 'main/debian-installer' and re.match("kfreebsd", architecture): + continue filename = "%s/dists/%s/%s/binary-%s/Packages.gz" % (Cnf["Dir::Root"], suite, component, architecture) # apt_pkg.ParseTagFile needs a real file handle (fd, temp_filename) = utils.temp_filename()