X-Git-Url: https://git.decadent.org.uk/gitweb/?a=blobdiff_plain;ds=sidebyside;f=ziyi;h=c48390e4f54d6dae3f8299212a39df2546c0d090;hb=f1da46727831e1d6bfbb611459fa398dcfcd0e91;hp=1bd18b2f9916761fc965c7925434c7f73aeabdd8;hpb=381930bcfa8b8c398b4f0dcf825c72f8fc3d1462;p=dak.git diff --git a/ziyi b/ziyi index 1bd18b2f..c48390e4 100755 --- a/ziyi +++ b/ziyi @@ -3,7 +3,7 @@ # Create all the Release files # Copyright (C) 2001, 2002 Anthony Towns -# $Id: ziyi,v 1.19 2002-05-14 15:29:18 troup Exp $ +# $Id: ziyi,v 1.21 2002-05-18 23:54:59 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 @@ -31,6 +31,8 @@ import apt_pkg Cnf = None projectB = None +out = None +AptCnf = None ################################################################################ @@ -157,7 +159,7 @@ def main (): notautomatic = "" if SuiteBlock.has_key("Components"): - components = SuiteBlock.SubTree("Components").List() + components = SuiteBlock.ValueList("Components") else: components = [] @@ -205,7 +207,7 @@ def main (): out.write("Date: %s\n" % (time.strftime("%a, %d %b %Y %H:%M:%S UTC", time.gmtime(time.time())))) if notautomatic != "": out.write("NotAutomatic: %s\n" % (notautomatic)) - out.write("Architectures: %s\n" % (string.join(filter(real_arch, SuiteBlock.SubTree("Architectures").List())))) + out.write("Architectures: %s\n" % (string.join(filter(real_arch, SuiteBlock.ValueList("Architectures"))))) if components: out.write("Components: %s\n" % (string.join(components)))