From a5a50a569467ba9206663c5b928dd852ccf6d299 Mon Sep 17 00:00:00 2001 From: Gery Debongnie Date: Fri, 4 Jul 2014 21:16:15 +0200 Subject: [PATCH] [FIX] correct a typo in variable name --- runbot/runbot.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/runbot/runbot.py b/runbot/runbot.py index 729f72b0..cf8c8b6d 100644 --- a/runbot/runbot.py +++ b/runbot/runbot.py @@ -264,7 +264,7 @@ class runbot_repo(osv.osv): 'author': author, 'subject': subject, } - Build.create(cr, uid, v) + Build.create(cr, uid, build_info) # skip old builds (if their sequence number is too low, they will not ever be built) skippable_domain = [('repo_id', '=', repo.id), ('state', '=', 'pending')]