From c7cd84ed41a5b670db475483b5ed3016931c223d Mon Sep 17 00:00:00 2001 From: Chris Lamb Date: Fri, 30 Oct 2009 11:48:04 +0000 Subject: [PATCH 1/1] Fix check_indices_files_exist in check-archive. Signed-off-by: Chris Lamb --- dak/check_archive.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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": -- 2.39.2