X-Git-Url: https://git.decadent.org.uk/gitweb/?a=blobdiff_plain;f=dak%2Fcheck_archive.py;h=f7230b00ee51608cb7a8ca46cff3a5cf74f88ac5;hb=b840ef0761e8b91bdec102b60b3bf09137627117;hp=bf10e6d4156e055beb032ced97c2bb9e9e446a7b;hpb=c99238db49e49f53712fcd992c85f03c9c503715;p=dak.git diff --git a/dak/check_archive.py b/dak/check_archive.py index bf10e6d4..f7230b00 100755 --- a/dak/check_archive.py +++ b/dak/check_archive.py @@ -86,8 +86,8 @@ def process_dir (unused, dirname, filenames): @type dirname: string @param dirname: the directory to look at - @type filename: dict - @param filename: Known filenames to ignore + @type filenames: dict + @param filenames: Known filenames to ignore """ global waste, db_files, excluded @@ -412,7 +412,7 @@ def check_indices_files_exist(): """ for suite in [ "stable", "testing", "unstable" ]: for component in Cnf.ValueList("Suite::%s::Components" % (suite)): - architectures = Cnf.ValueList("Suite::%s::Architectures" % (suite)) + architectures = database.get_suite_architectures(suite) for arch in [ i.lower() for i in architectures ]: if arch == "source": validate_sources(suite, component)