From 0acb356d1ad82aa5cbb570467a66b9391c88a4f5 Mon Sep 17 00:00:00 2001 From: Andre Anjos <andre.dos.anjos@gmail.com> Date: Thu, 14 Nov 2019 10:52:22 +0100 Subject: [PATCH] [build] Fix join statement --- 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 10137996..35a18475 100644 --- a/bob/devtools/build.py +++ b/bob/devtools/build.py @@ -256,7 +256,7 @@ def exists_on_channel(channel_url, basename): candidate = urls[other_build_numbers.index(self_build_number)] pkg_type = '.conda' if basename.endswith('.conda') else '.tar.bz2' if candidate.endswith(pkg_type): #match - return "".join(channel_url, candidate) + return "".join((channel_url, candidate)) def remove_pins(deps): -- GitLab