From a01a5137c3217a4ab28f3319dd7277ecd60d7a86 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?J=C3=BAlia=20Mir=20Pedrol?= Date: Tue, 18 Jul 2023 10:55:38 +0200 Subject: [PATCH] Update nf_core/utils.py MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Co-authored-by: Matthias Hörtenhuber --- nf_core/utils.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/nf_core/utils.py b/nf_core/utils.py index 9ceb3927b3..8b73a10921 100644 --- a/nf_core/utils.py +++ b/nf_core/utils.py @@ -733,7 +733,7 @@ def get_tag_date(tag_date): # Obtain common builds from Docker and Singularity images common_keys = list(all_docker.keys() & all_singularity.keys()) current_date = None - docker_image_name = docker_image["image_name"] if docker_image is not None else None + docker_image_name = docker_image["image_name"].lstrip("quay.io/") if docker_image is not None else None for k in common_keys: # Get the most recent common image date = max(all_docker[k]["date"], all_docker[k]["date"])