]> git.decadent.org.uk Git - dak.git/blobdiff - jenna
added extraoverrides (for Task: fields)
[dak.git] / jenna
diff --git a/jenna b/jenna
index cb0ca8d325583e2f3feaeba25cc7b67ca4fcc2d7..0f635cb4a041fe194f856e4c998ee504a152cea3 100755 (executable)
--- a/jenna
+++ b/jenna
@@ -2,7 +2,7 @@
 
 # Generate file list which is then fed to apt-ftparchive to generate Packages and Sources files
 # Copyright (C) 2000, 2001  James Troup <james@nocrew.org>
-# $Id: jenna,v 1.11 2001-05-03 06:52:03 ajt Exp $
+# $Id: jenna,v 1.12 2001-06-22 22:53:14 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
@@ -52,7 +52,7 @@ def generate_src_list(suite, component, output, dislocated_files):
         else:
             filename = path + filename;
         if sources.has_key(source):
-            sys.stderr.write("E: %s in %s / %s / source is duplicated.  Gravity wins!\n" % (source, suite, component));
+            utils.warn("%s in %s / %s / source is duplicated." % (source, suite, component));
         else:
             sources[source] = filename;
 
@@ -81,7 +81,7 @@ def generate_bin_list(suite, component, architecture, output, type, dislocated_f
         else:
             filename = path + filename;
         if packages.has_key(package):
-            sys.stderr.write("E: %s in %s / %s / %s / %s is duplicated.  Gravity wins!" % (package, suite, component, architecture, type));
+            utils.warn("%s in %s / %s / %s / %s is duplicated." % (package, suite, component, architecture, type));
         else:
             packages[package] = filename;