From: James Troup Date: Sun, 31 Mar 2002 16:14:42 +0000 (+0000) Subject: add missing debug option X-Git-Url: https://err.no/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=6213711af5ba0009dd1e5290eeb665f5c51e9fa8;p=dak add missing debug option --- diff --git a/halle b/halle index 01f05dd4..1a16ffe0 100755 --- a/halle +++ b/halle @@ -2,7 +2,7 @@ # Remove obsolete .changes files from proposed-updates # Copyright (C) 2001 James Troup -# $Id: halle,v 1.4 2002-02-12 22:12:44 troup Exp $ +# $Id: halle,v 1.5 2002-03-31 16:14:42 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 @@ -156,9 +156,10 @@ def main (): Cnf = utils.get_conf() - Arguments = [('v',"verbose","Halle::Options::Verbose"), + Arguments = [('d', "debug", "Halle::Options::Debug"), + ('v',"verbose","Halle::Options::Verbose"), ('h',"help","Halle::Options::Help")]; - for i in [ "verbose", "help" ]: + for i in [ "debug", "verbose", "help" ]: if not Cnf.has_key("Halle::Options::%s" % (i)): Cnf["Halle::Options::%s" % (i)] = "";