From 0e203553fa241a9d1b182d49e15fe028dabbd72f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Lubom=C3=ADr=20Sedl=C3=A1=C5=99?= Date: Thu, 3 Apr 2025 10:05:05 +0200 Subject: [PATCH] util: Fix typo in regex for container digests MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Lubomír Sedlář (cherry picked from commit ab4b221e6465ca387cd4c0c5928f133737cc0905) --- pungi/util.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pungi/util.py b/pungi/util.py index 89182b65..a110e5a9 100644 --- a/pungi/util.py +++ b/pungi/util.py @@ -263,7 +263,7 @@ class ContainerTagResolver(object): if self.offline: # We're offline, nothing to do return url - if re.match(".*@sha256:[a-z0.9]+", url): + if re.match(".*@sha256:[a-z0-9]+", url): # We already have a digest return url if url not in self.cache: