X-Git-Url: https://git.decadent.org.uk/gitweb/?a=blobdiff_plain;f=natalie.py;h=760a574f1c0c539e640edbd183afa7c56177b49b;hb=660b1949dc2e704ccd9bb8a4686d68f90fbe32d2;hp=64bd70635dd782cf752239c6f89aa1c654ec0186;hpb=4fde6cdd48ba46c2ebb7d95b04a04af573dc01fc;p=dak.git diff --git a/natalie.py b/natalie.py index 64bd7063..760a574f 100755 --- a/natalie.py +++ b/natalie.py @@ -2,7 +2,7 @@ # Manipulate override files # Copyright (C) 2000, 2001 James Troup -# $Id: natalie.py,v 1.5 2001-04-13 20:13:36 troup Exp $ +# $Id: natalie.py,v 1.6 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 @@ -177,7 +177,7 @@ def list(suite, component, type): type_id = db_access.get_override_type_id(type); if type_id == -1: - utils.fubar("Type '%s' not recognised. (Valid types are deb, udeb and dsc.)\n" % (type)); + utils.fubar("Type '%s' not recognised. (Valid types are deb, udeb and dsc)" % (type)); if type == "dsc": q = projectB.query("SELECT o.package, s.section, o.maintainer FROM override o, section s WHERE o.suite = %s AND o.component = %s AND o.type = %s AND o.section = s.id ORDER BY s.section, o.package" % (suite_id, component_id, type_id));