From 4cbd5275652afc1a9ad1027c80f5b0f7ed2d999c Mon Sep 17 00:00:00 2001 From: xmo-odoo Date: Tue, 8 Jul 2014 13:48:40 +0200 Subject: [PATCH] [FIX] non-renamed branches path handling Is there *really* a need for them to keep working? --- runbot/runbot.py | 1 + 1 file changed, 1 insertion(+) diff --git a/runbot/runbot.py b/runbot/runbot.py index 2ab6105d..36daa1d5 100644 --- a/runbot/runbot.py +++ b/runbot/runbot.py @@ -482,6 +482,7 @@ class runbot_build(osv.osv): for build in self.browse(cr, uid, ids, context=None): if os.path.exists(build.path('odoo')): return build.path('odoo', *l) + return build.path('openerp', *l) def checkout(self, cr, uid, ids, context=None): for build in self.browse(cr, uid, ids, context=context):