Skip to content

Commit fd33077

Browse files
committed
lowercase all
1 parent 4adf37b commit fd33077

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

myst_libre/tools/docker_registry_client.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -93,7 +93,8 @@ def search_img_by_repo_name(self):
9393
else:
9494
pattern = f'{self.bh_image_prefix}{user_repo_formatted}.*'
9595

96-
print(pattern)
96+
pattern = pattern.lower()
97+
self.cprint(f"🔍 Search pattern: {pattern}","light_blue")
9798
for image in self.docker_images:
9899
if re.match(pattern, image):
99100
self.found_image_name = image

0 commit comments

Comments
 (0)