From: Ryan Murray Date: Mon, 19 Nov 2001 03:56:29 +0000 (+0000) Subject: typo, binary -> binary-only X-Git-Url: https://err.no/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=2cd748ebb6cf3c2b25df8ab567834d12141b24e1;p=dak typo, binary -> binary-only --- diff --git a/melanie b/melanie index 0232c2c4..2ac04a13 100755 --- a/melanie +++ b/melanie @@ -2,7 +2,7 @@ # General purpose package removal tool for ftpmaster # Copyright (C) 2000, 2001 James Troup -# $Id: melanie,v 1.19 2001-11-18 19:57:58 rmurray Exp $ +# $Id: melanie,v 1.20 2001-11-19 03:56:29 rmurray 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 (): ('S',"source-only", "Melanie::Options::Source-Only"), ]; - for i in ["help", "architecture", "binary", "component", "carbon-copy", "done", "reason", "no-action", "partial", "source-only" ]: + for i in ["help", "architecture", "binary-only", "component", "carbon-copy", "done", "reason", "no-action", "partial", "source-only" ]: if not Cnf.has_key("Melanie::Options::%s" % (i)): Cnf["Melanie::Options::%s" % (i)] = ""; if not Cnf.has_key("Melanie::Options::Suite"): @@ -375,7 +375,7 @@ def main (): Subst["__BCC__"] = "Bcc: " + string.join(bcc, ", "); else: Subst["__BCC__"] = "X-Filler: 42"; - Subst["__CC__"] = "X-Melanie: $Revision: 1.19 $"; + Subst["__CC__"] = "X-Melanie: $Revision: 1.20 $"; if carbon_copy: Subst["__CC__"] = Subst["__CC__"] + "\nCc: " + string.join(carbon_copy, ", "); Subst["__SUITE_LIST__"] = suites_list;