From a53ffec4ed3d0f9221bca398e20e8f480fb2b325 Mon Sep 17 00:00:00 2001 From: Karsten Strand Date: Mon, 20 Aug 2018 09:51:00 +0200 Subject: 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. Signed-off-by: Richard Purdie --- 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 bf2cd7169..3f76e656f 100644 --- a/lib/toaster/toastergui/templates/recipe.html +++ b/lib/toaster/toastergui/templates/recipe.html @@ -176,7 +176,7 @@ {{task.get_executed_display}} {{task.get_outcome_display}} - {% if task.outcome = task.OUTCOME_FAILED %} + {% if task.outcome == task.OUTCOME_FAILED %}