diff mbox

[Branch,~linaro-validation/lava-dashboard/trunk] Rev 315: fix bug 850633: make test_result.message respect newlines (Chris Johnston)

Message ID 20120529032438.7635.17169.launchpad@ackee.canonical.com
State Accepted
Headers show

Commit Message

Michael-Doyle Hudson May 29, 2012, 3:24 a.m. UTC
Merge authors:
  Chris Johnston (chrisjohnston)
Related merge proposals:
  https://code.launchpad.net/~chrisjohnston/lava-dashboard/850633/+merge/107591
  proposed by: Chris Johnston (chrisjohnston)
------------------------------------------------------------
revno: 315 [merge]
committer: Michael Hudson-Doyle <michael.hudson@linaro.org>
branch nick: trunk
timestamp: Tue 2012-05-29 15:20:57 +1200
message:
  fix bug 850633: make test_result.message respect newlines (Chris Johnston)
modified:
  dashboard_app/templates/dashboard_app/test_result_detail.html


--
lp:lava-dashboard
https://code.launchpad.net/~linaro-validation/lava-dashboard/trunk

You are subscribed to branch lp:lava-dashboard.
To unsubscribe from this branch go to https://code.launchpad.net/~linaro-validation/lava-dashboard/trunk/+edit-subscription
diff mbox

Patch

=== modified file 'dashboard_app/templates/dashboard_app/test_result_detail.html'
--- dashboard_app/templates/dashboard_app/test_result_detail.html	2011-09-27 21:00:31 +0000
+++ dashboard_app/templates/dashboard_app/test_result_detail.html	2012-05-28 08:01:53 +0000
@@ -100,7 +100,7 @@ 
   <dt>{% trans "Message from the log file:" %}</dt>
   <dd>
   {% if test_result.message %}
-    <code>{{ test_result.message }}</code>
+    <code>{{ test_result.message|linebreaks }}</code>
   {% else %}
     <i>{% trans "information not provided" %}</i>
   {% endif %}