[oe-commits] [bitbake] 09/09: bitbake: toaster: Fix comparison in recipe template

git at git.openembedded.org git at git.openembedded.org
Mon Sep 10 20:02:26 UTC 2018


This is an automated email from the git hooks/post-receive script.

rpurdie pushed a commit to branch 1.38
in repository bitbake.

commit bef6ef1a79b2d5a3688ae845824f722c332d7f19
Author: Karsten Strand <karstens at graphcore.ai>
AuthorDate: Wed Sep 5 22:26:48 2018 -0700

    bitbake: toaster: Fix comparison in recipe template
    
    Use == instead of = when comparing task outcome to OUTCOME_FAILED.
    
    Prior to this fix the recipe template would cause a TemplateSyntaxError
    exception.
    
    (Bitbake rev: a53ffec4ed3d0f9221bca398e20e8f480fb2b325)
    
    Signed-off-by: Richard Purdie <richard.purdie at linuxfoundation.org>
---
 lib/toaster/toastergui/templates/recipe.html | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/lib/toaster/toastergui/templates/recipe.html b/lib/toaster/toastergui/templates/recipe.html
index bf2cd71..3f76e65 100644
--- a/lib/toaster/toastergui/templates/recipe.html
+++ b/lib/toaster/toastergui/templates/recipe.html
@@ -176,7 +176,7 @@
                     <td>{{task.get_executed_display}}</td>
 
                     <td>{{task.get_outcome_display}} 
-                        {% if task.outcome = task.OUTCOME_FAILED %}
+                        {% if task.outcome == task.OUTCOME_FAILED %}
                             <a href="{% url 'build_artifact' build.pk "tasklogfile" task.pk %}">
                                 <span class="glyphicon glyphicon-download-alt
                                     get-help" title="Download task log

-- 
To stop receiving notification emails like this one, please contact
the administrator of this repository.


More information about the Openembedded-commits mailing list