]> git.decadent.org.uk Git - dak.git/blobdiff - shania
sync
[dak.git] / shania
diff --git a/shania b/shania
index cab1c1f79c9d41b67c76c1fb1c5d261b962cde3a..5cd8ad7aeeade885a753fad3ecf7e1f1c8b61d7d 100755 (executable)
--- a/shania
+++ b/shania
@@ -2,7 +2,7 @@
 
 # Clean incoming of old unused files
 # Copyright (C) 2000, 2001  James Troup <james@nocrew.org>
-# $Id: shania,v 1.9 2001-11-18 19:57:58 rmurray Exp $
+# $Id: shania,v 1.12 2002-02-12 22:14:38 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
@@ -20,8 +20,8 @@
 
 ################################################################################
 
-import os, re, stat, string, sys, time, traceback
-import utils
+import os, stat, sys, time;
+import utils;
 import apt_pkg;
 
 ################################################################################
@@ -46,6 +46,7 @@ import apt_pkg;
 Cnf = None;
 Options = None;
 del_dir = None;
+delete_date = None;
 
 ################################################################################
 
@@ -181,10 +182,8 @@ def main ():
     if not Cnf.has_key("Shania::Options::Days"):
        Cnf["Shania::Options::Days"] = "14";
 
-    apt_pkg.ReadConfigFileISC(Cnf,utils.which_conf_file());
-
     Arguments = [('h',"help","Shania::Options::Help"),
-                 ('d',"days","Shania::Options::Days", "IntVal"),
+                 ('d',"days","Shania::Options::Days", "IntLevel"),
                  ('i',"incoming","Shania::Options::Incoming", "HasArg"),
                  ('n',"no-action","Shania::Options::No-Action"),
                  ('v',"verbose","Shania::Options::Verbose")];