X-Git-Url: https://git.decadent.org.uk/gitweb/?a=blobdiff_plain;ds=sidebyside;f=denise;fp=denise;h=5133e1d4a8bbf45ce439f0fb5a1d4efc10a95ca4;hb=904d0a564581ae27b6fdf534647976b39fe35229;hp=2e2c16e40cbd374ad20e99bc614cb411263b56fa;hpb=093ab521de8c11f05e2cdbaad8482e9e66d6fd11;p=dak.git diff --git a/denise b/denise index 2e2c16e4..5133e1d4 100755 --- a/denise +++ b/denise @@ -2,7 +2,7 @@ # Output override files for apt-ftparchive and indices/ # Copyright (C) 2000, 2001 James Troup -# $Id: denise,v 1.5 2001-06-22 22:53:14 troup Exp $ +# $Id: denise,v 1.6 2001-06-23 19:16:27 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 @@ -90,7 +90,7 @@ def main (): natalie.init(); for suite in [ "stable", "unstable" ]: - print "Processing %s..." % (suite); + sys.stderr.write("Processing %s...\n" % (suite)); override_suite = Cnf["Suite::%s::OverrideCodeName" % (suite)]; for component in Cnf.SubTree("Component").List(): if component == "mixed": @@ -113,7 +113,7 @@ def main (): # Munge the override file for testing by using unstable's where # possible and falling back on stable's where it's not. - print "Processing testing..."; + sys.stderr.write("Processing testing...\n"); suite = "testing"; suite_id = db_access.get_suite_id(suite); override_suite = Cnf["Suite::%s::OverrideCodeName" % (suite)];