X-Git-Url: https://git.decadent.org.uk/gitweb/?a=blobdiff_plain;f=andrea;h=4d2894e95e59b41e14bf849fb56a78796644093b;hb=b51815ac34b619062cff7a6633ad43e6af255917;hp=b678d9de3e08301722cb19d09bc70d7d30a988c5;hpb=a092f0aa8e82394e25a16da9e87263ee26b8de0e;p=dak.git diff --git a/andrea b/andrea index b678d9de..4d2894e9 100755 --- a/andrea +++ b/andrea @@ -1,8 +1,8 @@ #!/usr/bin/env python # Check for fixable discrepancies between stable and unstable -# Copyright (C) 2000, 2001 James Troup -# $Id: andrea,v 1.4 2001-09-27 01:23:41 troup Exp $ +# Copyright (C) 2000, 2001, 2002 James Troup +# $Id: andrea,v 1.7 2002-05-14 15:28:53 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 @@ -35,10 +35,7 @@ projectB = None; def main (): global Cnf, projectB; - apt_pkg.init(); - - Cnf = apt_pkg.newConfiguration(); - apt_pkg.ReadConfigFileISC(Cnf,utils.which_conf_file()); + Cnf = utils.get_conf() apt_pkg.ParseCommandLine(Cnf,[],sys.argv); @@ -53,7 +50,7 @@ def main (): arch_all_id = db_access.get_architecture_id("all"); dsc_type_id = db_access.get_override_type_id("dsc"); - for arch in Cnf.SubTree("Suite::%s::Architectures" % (src_suite)).List(): + for arch in Cnf.ValueList("Suite::%s::Architectures" % (src_suite)): if arch == "source": continue;