From ab4b221e6465ca387cd4c0c5928f133737cc0905 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ář --- pungi/util.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pungi/util.py b/pungi/util.py index 100a618a..441057b5 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: