From bb84e88c478a53256a60f13b2a42122b0318735b Mon Sep 17 00:00:00 2001 From: Andre Anjos <andre.dos.anjos@gmail.com> Date: Tue, 12 Feb 2019 10:40:48 +0100 Subject: [PATCH] [build] Fix log string --- bob/devtools/build.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bob/devtools/build.py b/bob/devtools/build.py index 4f475d26..c33c0d55 100644 --- a/bob/devtools/build.py +++ b/bob/devtools/build.py @@ -515,7 +515,7 @@ def base_build(server, intranet, recipe_dir, conda_build_config, python_version) if candidate is not None: logger.info('Skipping build for %s-%s-(py%s_?)%s for %s - exists ' \ - 'on channel', candidate[0], candidate[1], candidate[2], py_ver) + 'on channel', candidate[0], candidate[1], candidate[2], py_ver, arch) return # if you get to this point, just builds the package -- GitLab