From 863f0b5952abae8186ca64837fa369f003b5ac72 Mon Sep 17 00:00:00 2001 From: "Adam D. Barratt" Date: Tue, 28 Jun 2011 19:13:11 +0000 Subject: [PATCH] Re-enable writing of "Dates" at the end of the run. The permissions issues which led to the writing being disabled no longer exist and not persisting the date list makes b2 unsuitable for use as a primary implementation. --- britney.py | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/britney.py b/britney.py index 1e5b043..37cd471 100755 --- a/britney.py +++ b/britney.py @@ -2649,9 +2649,8 @@ class Britney: if self.options.control_files: self.write_controlfiles(self.options.testing, 'testing') - # write bugs and dates - # XXX: disabled, we don't have write permission over there - # self.write_dates(self.options.testing, self.dates) + # write dates + self.write_dates(self.options.testing, self.dates) # write HeidiResult self.write_heidi(self.options.heidi_output)