]> git.decadent.org.uk Git - dak.git/commitdiff
clean-suites
authorJoerg Jaspert <joerg@debian.org>
Tue, 24 Feb 2009 22:30:17 +0000 (23:30 +0100)
committerJoerg Jaspert <joerg@debian.org>
Tue, 24 Feb 2009 22:30:17 +0000 (23:30 +0100)
its delete_date, not delete_data

Signed-off-by: Joerg Jaspert <joerg@debian.org>
dak/clean_suites.py

index 6b7171fa8bf99589e20aae99cd61577e73fbac53..cc2b7368ffc2569ccb3df1ada4cd235d32128b18 100755 (executable)
@@ -206,7 +206,7 @@ def clean():
         sys.stdout.write("done. (%d seconds)]\n" % (int(time.time()-before)))
 
     # Delete files from the pool
-    query = "SELECT l.path, f.filename FROM location l, files f WHERE f.last_used <= '%s' AND l.id = f.location" % (delete_data)
+    query = "SELECT l.path, f.filename FROM location l, files f WHERE f.last_used <= '%s' AND l.id = f.location" % (delete_date)
     if max_delete is not None:
         query += " LIMIT %d" % maximum
         sys.stdout.write("Limiting removals to %d" % Cnf["Clean-Suites::Options::Maximum"])