X-Git-Url: https://git.decadent.org.uk/gitweb/?a=blobdiff_plain;f=jenna;h=a88718e07aaa009ba64d9e4a87cf495289e6e47c;hb=080f3c9b04f77a9b873628241fbe121583d074d1;hp=e388ca1bfb8283ba1d824a03c89ee0627fccf284;hpb=8ecf66b7d933929ca5f504a32fb54542b0b87b71;p=dak.git diff --git a/jenna b/jenna index e388ca1b..a88718e0 100755 --- a/jenna +++ b/jenna @@ -2,7 +2,7 @@ # Generate file list which is then fed to apt-ftparchive to generate Packages and Sources files # Copyright (C) 2000, 2001, 2002 James Troup -# $Id: jenna,v 1.16 2002-05-08 11:13:02 troup Exp $ +# $Id: jenna,v 1.17 2002-05-14 15:34:02 troup Exp $ # This program is free software; you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by @@ -252,12 +252,12 @@ def main(): if not Cnf.has_key("Suite::%s::Components" % (suite)): components = "-"; if components == "": - components = string.join(Cnf.SubTree("Suite::%s::Components" % (suite)).List()); + components = string.join(Cnf.ValueList("Suite::%s::Components" % (suite))); for component in string.split(components): component = string.lower(component) architectures = Options["Architecture"]; if architectures == "": - architectures = string.join(Cnf.SubTree("Suite::%s::Architectures" % (suite)).List()); + architectures = string.join(Cnf.ValueList("Suite::%s::Architectures" % (suite))); for architecture in string.split(architectures): architecture = string.lower(architecture) if architecture == "all":