From d65b59f47b68693f32fec60cd4ecb32e93af8b51 Mon Sep 17 00:00:00 2001 From: Odoo Online Date: Mon, 9 Feb 2015 19:35:53 +0100 Subject: [PATCH] [FIX] runbot typo --- runbot/runbot.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/runbot/runbot.py b/runbot/runbot.py index f7f64a76..48584085 100644 --- a/runbot/runbot.py +++ b/runbot/runbot.py @@ -742,7 +742,7 @@ class runbot_build(osv.osv): if build.state in ('running', 'done'): state = 'error' if build.result == 'ok': - state = 'sucess' + state = 'success' if build.result == 'ko': state = 'failure' desc += " (runtime %ss)" % (build.job_time,)