From: Joerg Jaspert Date: Fri, 21 Sep 2012 08:05:33 +0000 (+0200) Subject: Merge remote-tracking branch 'drkranz/fixes' into merge X-Git-Url: https://git.decadent.org.uk/gitweb/?a=commitdiff_plain;h=a662e43c8fbf84b4a06d011f2bee01d8c579ab7c;hp=0cd5ef66e65102991e2e0e77c33f4a77b06c7c4d;p=dak.git Merge remote-tracking branch 'drkranz/fixes' into merge * drkranz/fixes: show-new: remove False statement to reduce processing time Signed-off-by: Joerg Jaspert --- diff --git a/dak/show_new.py b/dak/show_new.py index b3420194..efc4ee8c 100755 --- a/dak/show_new.py +++ b/dak/show_new.py @@ -166,7 +166,7 @@ def do_pkg(upload_id): htmlfile = os.path.join(cnf['Show-New::HTMLPath'], htmlname) # Have we already processed this? - if False and os.path.exists(htmlfile) and \ + if os.path.exists(htmlfile) and \ os.stat(htmlfile).st_mtime > time.mktime(changes.created.timetuple()): with open(htmlfile, "r") as fd: if fd.read() != timeout_str: