Skip to content
Snippets Groups Projects
Commit 0acb356d authored by André Anjos's avatar André Anjos :speech_balloon:
Browse files

[build] Fix join statement

parent 650a047b
No related branches found
No related tags found
1 merge request!127Reset license file location and remove hack (closes #44)
Pipeline #35336 failed
......@@ -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):
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment