From 2e5b1cb2400c27a74089502473bf768471d0e851 Mon Sep 17 00:00:00 2001 From: Xavier-Do Date: Mon, 22 Jul 2019 13:06:44 +0200 Subject: [PATCH] [FIX] runbot: fix typo kill -> _kill --- runbot/models/build.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/runbot/models/build.py b/runbot/models/build.py index 1d28613b..46b8e10c 100644 --- a/runbot/models/build.py +++ b/runbot/models/build.py @@ -714,7 +714,7 @@ class runbot_build(models.Model): exports[build_export_path] = commit.export() except HashMissingException: self._log('_checkout', "Commit %s is unreachable. Did you force push the branch since build creation?" % commit, level='ERROR') - self.kill(result='ko') + self._kill(result='ko') return exports def _get_modules_to_test(self, commits=None):