X-Git-Url: https://git.decadent.org.uk/gitweb/?a=blobdiff_plain;f=halle;h=e3ad2882a87d6874561fd46ee3a4e44e3f320d86;hb=b51815ac34b619062cff7a6633ad43e6af255917;hp=01f05dd44a62066bcf6ec3a121a6dc1169a451a9;hpb=240185ce8d1003ad7a1a15817d1e0c2ee55675f3;p=dak.git diff --git a/halle b/halle index 01f05dd4..e3ad2882 100755 --- a/halle +++ b/halle @@ -1,8 +1,8 @@ #!/usr/bin/env python # 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 $ +# Copyright (C) 2001, 2002 James Troup +# $Id: halle,v 1.6 2002-05-08 11:13:02 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 @@ -108,7 +108,7 @@ def check_joey (filename): file = utils.open_file(filename); cwd = os.getcwd(); - os.chdir("%s/dists/proposed-updates" % (Cnf["Dir::RootDir"])); + os.chdir("%s/dists/proposed-updates" % (Cnf["Dir::Root"])); for line in file.readlines(): line = line[:-1]; @@ -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)] = "";