X-Git-Url: https://git.decadent.org.uk/gitweb/?a=blobdiff_plain;f=ziyi;h=bd08efc05e7240e32612fa2008d4c5f1930a9ea9;hb=080f3c9b04f77a9b873628241fbe121583d074d1;hp=c7aa2db3a17cda67e59e992e7bd25a0f633f7dc9;hpb=fff7a692ba94cad44a5023296924b3141bfaf9f9;p=dak.git diff --git a/ziyi b/ziyi index c7aa2db3..bd08efc0 100755 --- a/ziyi +++ b/ziyi @@ -3,7 +3,7 @@ # Create all the Release files # Copyright (C) 2001, 2002 Anthony Towns -# $Id: ziyi,v 1.18 2002-05-08 11:17:53 troup Exp $ +# $Id: ziyi,v 1.20 2002-05-15 05:43:34 ajt 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 @@ -157,12 +157,12 @@ def main (): notautomatic = "" if SuiteBlock.has_key("Components"): - components = SuiteBlock.SubTree("Components").List() + components = SuiteBlock.ValueList("Components") else: components = [] nonus = 1 - if components != []: + if components: for c in components: if string.find(c, "non-US/") != 0: nonus = 0 @@ -205,8 +205,8 @@ 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())))) - if components != []: + out.write("Architectures: %s\n" % (string.join(filter(real_arch, SuiteBlock.ValueList("Architectures"))))) + if components: out.write("Components: %s\n" % (string.join(components))) out.write("Description: %s\n" % (SuiteBlock["Description"]))