X-Git-Url: https://git.decadent.org.uk/gitweb/?a=blobdiff_plain;f=dak%2Fcheck_archive.py;h=ceb8cb6dc147449322bcb12fdae0eee30ccc9fc4;hb=c7cd84ed41a5b670db475483b5ed3016931c223d;hp=d77f3fd0fd674be44b899a402c4bc8048f85e564;hpb=899a64f834287209d05024012b934fcc788e2b60;p=dak.git diff --git a/dak/check_archive.py b/dak/check_archive.py index d77f3fd0..ceb8cb6d 100755 --- a/dak/check_archive.py +++ b/dak/check_archive.py @@ -427,8 +427,8 @@ def check_indices_files_exist(): """ for suite in [ "stable", "testing", "unstable" ]: for component in Cnf.ValueList("Suite::%s::Components" % (suite)): - architectures = database.get_suite_architectures(suite) - for arch in [ i.lower() for i in architectures ]: + architectures = get_suite_architectures(suite) + for arch in [ i.arch_string.lower() for i in architectures ]: if arch == "source": validate_sources(suite, component) elif arch == "all":