changeset 168:565f8b5126f8

Drop the slave name from the timeline events summary.
author cmlenz
date Sun, 28 Aug 2005 13:11:02 +0000
parents 155e196e72cd
children 722215d17899
files bitten/trac_ext/web_ui.py
diffstat 1 files changed, 3 insertions(+), 3 deletions(-) [+]
line wrap: on
line diff
--- 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 <em>%s [%s]</em> by %s (%s) %s' \
-                        % (escape(label), escape(rev), escape(slave),
-                           escape(platform), _status_label[status])
+                title = 'Build of <em>%s [%s]</em> 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:
Copyright (C) 2012-2017 Edgewall Software