From 7371b188b9305b10f5eaa48e5529b2b7f74ba9d7 Mon Sep 17 00:00:00 2001 From: Anthony Towns Date: Wed, 15 May 2002 05:43:34 +0000 Subject: [PATCH] fix to match new katie.conf format --- ziyi | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/ziyi b/ziyi index 1bd18b2f..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.19 2002-05-14 15:29:18 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,7 +157,7 @@ def main (): notautomatic = "" if SuiteBlock.has_key("Components"): - components = SuiteBlock.SubTree("Components").List() + components = SuiteBlock.ValueList("Components") else: components = [] @@ -205,7 +205,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))) -- 2.39.2