From 29b40e64184222f0a77c7c8c1de9e72d84463052 Mon Sep 17 00:00:00 2001 From: Eelco Dolstra Date: Fri, 27 Apr 2012 10:54:49 +0200 Subject: [PATCH] Fix the duration on Build pages --- src/root/build.tt | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/root/build.tt b/src/root/build.tt index 99de759b..058b4ced 100644 --- a/src/root/build.tt +++ b/src/root/build.tt @@ -112,14 +112,14 @@ System: [% build.system %] - [% IF !build.finished %] + [% IF build.finished %] Duration: [% IF build.iscachedbuild %] (cached[% IF cachedBuild %] from [% INCLUDE renderFullBuildLink build=cachedBuild %][% END %]) [% ELSE %] - [% INCLUDE renderDuration duration = build.stoptime - build.starttime %] finished at [% INCLUDE renderDateTime timestamp = build.stoptime %] + [% INCLUDE renderDuration duration = build.stoptime - build.starttime %] finished at [% INCLUDE renderDateTime timestamp = build.stoptime %] [% END %]