# HG changeset patch # User cmlenz # Date 1125234662 0 # Node ID 565f8b5126f8fca585981b66234d85b800120781 # Parent 155e196e72cd453eb37857d52d35a133a3624e36 Drop the slave name from the timeline events summary. diff --git a/bitten/trac_ext/web_ui.py b/bitten/trac_ext/web_ui.py --- a/bitten/trac_ext/web_ui.py +++ b/bitten/trac_ext/web_ui.py @@ -457,9 +457,9 @@ event_kinds = {Build.SUCCESS: 'successbuild', Build.FAILURE: 'failedbuild'} for id, config, label, rev, platform, slave, stopped, status in cursor: - title = 'Build of %s [%s] by %s (%s) %s' \ - % (escape(label), escape(rev), escape(slave), - escape(platform), _status_label[status]) + title = 'Build of %s [%s] on %s %s' \ + % (escape(label), escape(rev), escape(platform), + _status_label[status]) if req.args.get('format') == 'rss': href = self.env.abs_href.build(config, id) else: