]> git.decadent.org.uk Git - dak.git/commitdiff
add missing debug option
authorJames Troup <james@nocrew.org>
Sun, 31 Mar 2002 16:14:42 +0000 (16:14 +0000)
committerJames Troup <james@nocrew.org>
Sun, 31 Mar 2002 16:14:42 +0000 (16:14 +0000)
halle

diff --git a/halle b/halle
index 01f05dd44a62066bcf6ec3a121a6dc1169a451a9..1a16ffe07be36e64d0b6fecd241b88d143bdfdc0 100755 (executable)
--- a/halle
+++ b/halle
@@ -2,7 +2,7 @@
 
 # Remove obsolete .changes files from proposed-updates
 # Copyright (C) 2001  James Troup <james@nocrew.org>
-# $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)] = "";