X-Git-Url: https://git.decadent.org.uk/gitweb/?a=blobdiff_plain;f=daklib%2Fdbconn.py;h=701f131f6669f8ad75a719707be8dd28fae092ba;hb=4d24b3022645049292284edacdf51270da33a9ed;hp=5e9f547809b0aaccf3e0613904ff56b9a49af824;hpb=30767be11759cacb9fc2daad6a5860f20502eb83;p=dak.git diff --git a/daklib/dbconn.py b/daklib/dbconn.py index 5e9f5478..701f131f 100644 --- a/daklib/dbconn.py +++ b/daklib/dbconn.py @@ -565,15 +565,15 @@ class BuildQueue(object): self.write_metadata(starttime) # Grab files older than our execution time - older = session.query(BuildQueueFile).filter_by(build_queue_id = self.queue_id).filter(BuildQueueFile.lastused + timedelta(seconds=self.stay_of_execution) <= starttime).all() + older = session.query(BuildQueueFile).filter_by(build_queue_id = self.queue_id).filter(BuildQueueFile.lastused + timedelta(seconds=self.stay_of_execution) <= starttime).all() for o in older: killdb = False try: if dryrun: - print "I: Would have removed %s from the queue" + print "I: Would have removed %s from the queue" % o.fullpath else: - print "I: Removing %s from the queue" + print "I: Removing %s from the queue" % o.fullpath os.unlink(o.fullpath) killdb = True except OSError, e: