[LNT] r238920 - Fix paste-o from r235959
James Molloy
james.molloy at arm.com
Wed Jun 3 05:24:32 PDT 2015
Author: jamesm
Date: Wed Jun 3 07:24:31 2015
New Revision: 238920
URL: http://llvm.org/viewvc/llvm-project?rev=238920&view=rev
Log:
Fix paste-o from r235959
Modified:
lnt/trunk/lnt/server/ui/templates/v4_run.html
Modified: lnt/trunk/lnt/server/ui/templates/v4_run.html
URL: http://llvm.org/viewvc/llvm-project/lnt/trunk/lnt/server/ui/templates/v4_run.html?rev=238920&r1=238919&r2=238920&view=diff
==============================================================================
--- lnt/trunk/lnt/server/ui/templates/v4_run.html (original)
+++ lnt/trunk/lnt/server/ui/templates/v4_run.html Wed Jun 3 07:24:31 2015
@@ -112,7 +112,7 @@
{% for r in comparison_neighboring_runs %}
<li>
{{ "<b>"|safe if compare_to and r.id == compare_to.id else "" }}
- <a href="{{v4_url_for('v4_run', id=run.id, compare_to=r.id)}}"><span class="utctime">{{ run.start_time.isoformat() }}</span></a>
+ <a href="{{v4_url_for('v4_run', id=run.id, compare_to=r.id)}}"><span class="utctime">{{ r.start_time.isoformat() }}</span></a>
{{ "</b>"|safe if compare_to and r.id == compare_to.id else "" }}
{% endfor %}
</ul>
More information about the llvm-commits
mailing list