util: Fix typo in regex for container digests
Signed-off-by: Lubomír Sedlář <lsedlar@redhat.com>
This commit is contained in:
parent
3ed09991c1
commit
ab4b221e64
1 changed files with 1 additions and 1 deletions
|
|
@ -263,7 +263,7 @@ class ContainerTagResolver(object):
|
||||||
if self.offline:
|
if self.offline:
|
||||||
# We're offline, nothing to do
|
# We're offline, nothing to do
|
||||||
return url
|
return url
|
||||||
if re.match(".*@sha256:[a-z0.9]+", url):
|
if re.match(".*@sha256:[a-z0-9]+", url):
|
||||||
# We already have a digest
|
# We already have a digest
|
||||||
return url
|
return url
|
||||||
if url not in self.cache:
|
if url not in self.cache:
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue