X-Git-Url: https://git.decadent.org.uk/gitweb/?a=blobdiff_plain;f=katie.py;h=a46b729abc1ce234934b8bc0ba233e7b8953dee0;hb=2e3d931ac7dbf2b90b4571cbd594aeed07f0bd8a;hp=996ae0283fef263e5bacc98c27031e7032adc7a0;hpb=3ca8a114bb074ff029e99cf28d308550f74f4c4f;p=dak.git diff --git a/katie.py b/katie.py index 996ae028..a46b729a 100644 --- a/katie.py +++ b/katie.py @@ -2,7 +2,7 @@ # Utility functions for katie # Copyright (C) 2001, 2002 James Troup -# $Id: katie.py,v 1.27 2002-10-16 02:47:32 troup Exp $ +# $Id: katie.py,v 1.28 2003-01-20 19:13:23 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 @@ -460,11 +460,11 @@ distribution."""; # Ignore this; it's a common mistake and not worth whining about if section.lower() == "non-us/main" and override_section.lower() == "non-us": continue; - summary += "%s: section is overridden from %s to %s.\n" % (file, section, override_section); + summary += "%s: package says section is %s, override says %s.\n" % (file, section, override_section); priority = files[file]["priority"]; override_priority = files[file]["override priority"]; if priority != override_priority and priority != "-": - summary += "%s: priority is overridden from %s to %s.\n" % (file, priority, override_priority); + summary += "%s: package says priority is %s, override says %s.\n" % (file, priority, override_priority); if summary == "": return;