[FIX] runbot: fix typo

kill -> _kill
This commit is contained in:
Xavier-Do 2019-07-22 13:06:44 +02:00
parent 0efd3fde1d
commit 2e5b1cb240

View File

@ -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):