# HG changeset patch # User cmlenz # Date 1126539298 0 # Node ID 5238e94c9fd1269041c076261479320078a47487 # Parent da2a2e9a8f719b3022c7fc4c52d94bd50ea0b045 If BDB XML was not installed, viewing the build results page would fail because returned None instead of an empty list. diff --git a/bitten/store.py b/bitten/store.py --- a/bitten/store.py +++ b/bitten/store.py @@ -169,9 +169,6 @@ yield BDBXMLBackend.XmlValueAdapter(value) def retrieve_reports(self, build, step=None, type=None): - if dbxml is None: - log.warning('BDB XML not installed, cannot retrieve reports') - return return self.query_reports('return $reports', build=build, step=step, type=type)