diff --git a/nf_core/download.py b/nf_core/download.py index 7e7b45756d..cf95d27a14 100644 --- a/nf_core/download.py +++ b/nf_core/download.py @@ -826,7 +826,7 @@ def rectify_raw_container_matches(self, raw_findings): Mostly, it is a nested DSL2 string, but it may also just be a plain string. - First check if container_value it is a plain container URI like in DSL1 pipelines + First, check if container_value is a plain container URI like in DSL1 pipelines or a plain URL like in the old DSL2 convention """ @@ -943,7 +943,6 @@ def prioritize_direct_download(self, container_list): """ d = {} for c in container_list: - log.info(c) if re.match(r"^$|(?!^http)", d.get(k := re.sub(".*/(.*)", "\\1", c), "")): log.debug(f"{c} matches and will be saved as {k}") d[k] = c