X-Git-Url: https://git.decadent.org.uk/gitweb/?a=blobdiff_plain;f=shania;h=cab1c1f79c9d41b67c76c1fb1c5d261b962cde3a;hb=2f5e692bfbbb6f8146f50d944f7fcc169a95a0a3;hp=83b748ae104fb981ebc29fc7adbc90ed3cec5dd5;hpb=5fc7cefdb9b600c729ca5a82fd5b3a828f4fd370;p=dak.git diff --git a/shania b/shania index 83b748ae..cab1c1f7 100755 --- a/shania +++ b/shania @@ -2,7 +2,7 @@ # Clean incoming of old unused files # Copyright (C) 2000, 2001 James Troup -# $Id: shania,v 1.6 2001-09-27 01:22:51 troup Exp $ +# $Id: shania,v 1.9 2001-11-18 19:57:58 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 @@ -131,7 +131,7 @@ def flush_orphans (): changes = utils.parse_changes(changes_filename, 0) files = utils.build_file_list(changes, ""); except: - utils.warn("error processing '%s'; skipping it. [Got %s]" % (file, sys.exc_type)); + utils.warn("error processing '%s'; skipping it. [Got %s]" % (changes_filename, sys.exc_type)); continue; dsc_files = {}; @@ -173,9 +173,14 @@ def flush_orphans (): def main (): global Cnf, Options; - apt_pkg.init(); + Cnf = utils.get_conf() + + for i in ["Help", "Incoming", "No-Action", "Verbose" ]: + if not Cnf.has_key("Shania::Options::%s" % (i)): + Cnf["Shania::Options::%s" % (i)] = ""; + if not Cnf.has_key("Shania::Options::Days"): + Cnf["Shania::Options::Days"] = "14"; - Cnf = apt_pkg.newConfiguration(); apt_pkg.ReadConfigFileISC(Cnf,utils.which_conf_file()); Arguments = [('h',"help","Shania::Options::Help"), @@ -183,8 +188,6 @@ def main (): ('i',"incoming","Shania::Options::Incoming", "HasArg"), ('n',"no-action","Shania::Options::No-Action"), ('v',"verbose","Shania::Options::Verbose")]; - for i in ["help", "days", "incoming", "no-action", "verbose" ]: - Cnf["Shania::Options::%s" % (i)] = ""; apt_pkg.ParseCommandLine(Cnf,Arguments,sys.argv); Options = Cnf.SubTree("Shania::Options")