diff --git a/runbot_builder/tools.py b/runbot_builder/tools.py index c5f4820c..977a168c 100644 --- a/runbot_builder/tools.py +++ b/runbot_builder/tools.py @@ -115,7 +115,7 @@ class RunbotClient(): commands = [] host_name = self.host.name for repo in self.env['runbot.repo'].search([]): - commands.append(repo.name, (repo._get_git_command(['gc', '--prune=all', '--quiet']))) + commands.append((repo.name, repo._get_git_command(['gc', '--prune=all', '--quiet']))) self.env.cr.rollback() # gc commands can be slow, rollbacking to avoid to keep a transaction idle for multiple minutes. messages = []