From 97ad5e77467fd752056c32126ad15657e217a434 Mon Sep 17 00:00:00 2001 From: Christophe Simonis Date: Mon, 13 Jul 2015 10:15:27 +0200 Subject: [PATCH] [FIX] runbot: '' is not a valid module name --- runbot/runbot.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/runbot/runbot.py b/runbot/runbot.py index a9e236c8..285cdb57 100644 --- a/runbot/runbot.py +++ b/runbot/runbot.py @@ -639,7 +639,8 @@ class runbot_build(osv.osv): modules_to_move = [] modules_to_test = ((build.modules or '') + (build.branch_id.modules or '') + - (build.repo_id.modules or '')).split(',') + (build.repo_id.modules or '')) + modules_to_test = modules_to_test.split(',') if modules_to_test else [] _logger.debug("manual modules_to_test for build %s: %s", build.dest, modules_to_test) if not has_server: