# HG changeset patch # User cmlenz # Date 1123930782 0 # Node ID d2b833187429945ca378e07d71e28cfbcd335960 # Parent 1a1a294ce10e3cfde4f7fd5bcb7dbbf6b11b60ee Bump up version number. diff --git a/bitten/__init__.py b/bitten/__init__.py --- a/bitten/__init__.py +++ b/bitten/__init__.py @@ -18,4 +18,4 @@ # # Author: Christopher Lenz -__version__ = '0.2' +__version__ = '0.3' diff --git a/bitten/master.py b/bitten/master.py --- a/bitten/master.py +++ b/bitten/master.py @@ -357,13 +357,12 @@ step.started -= timestamp_delta step.stopped -= timestamp_delta if elem.attr['result'] == 'failure': - log.warning('Step failed: %s', elem.gettext()) + log.warning('Step failed') step.status = BuildStep.FAILURE else: step.status = BuildStep.SUCCESS step.insert(db=db) - # TODO: Store reports, too level_map = {'debug': BuildLog.DEBUG, 'info': BuildLog.INFO, 'warning': BuildLog.WARNING, 'error': BuildLog.ERROR} for log_elem in elem.children('log'):