[LNT] r249677 - Fix unit test failure introduced at r249102 - unbalanced HTML tags.

Kristof Beyls via llvm-commits llvm-commits at lists.llvm.org
Thu Oct 8 03:46:29 PDT 2015


Author: kbeyls
Date: Thu Oct  8 05:46:29 2015
New Revision: 249677

URL: http://llvm.org/viewvc/llvm-project?rev=249677&view=rev
Log:
Fix unit test failure introduced at r249102 - unbalanced HTML tags.

Modified:
    lnt/trunk/lnt/server/ui/templates/layout.html

Modified: lnt/trunk/lnt/server/ui/templates/layout.html
URL: http://llvm.org/viewvc/llvm-project/lnt/trunk/lnt/server/ui/templates/layout.html?rev=249677&r1=249676&r2=249677&view=diff
==============================================================================
--- lnt/trunk/lnt/server/ui/templates/layout.html (original)
+++ lnt/trunk/lnt/server/ui/templates/layout.html Thu Oct  8 05:46:29 2015
@@ -187,7 +187,9 @@
     {% endif %}
   
           {% block body %}{% endblock %}
-        </div>
+    {% if nosidebar is defined %}
+         </div>
+    {% endif %}
       </div>
     </div>
 




More information about the llvm-commits mailing list