Skip to content
This repository has been archived by the owner on Oct 13, 2023. It is now read-only.

Commit

Permalink
not match slash characters (#723)
Browse files Browse the repository at this point in the history
  • Loading branch information
Ximinhan committed Jan 31, 2023
1 parent ce8ff9c commit f97c289
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion doozerlib/olm/bundle.py
Expand Up @@ -393,7 +393,7 @@ def collect_replaced_image(match):
return image

new_contents = re.sub(
r'{}\/([^:]+):([^\'"\s]+)'.format(self.operator_csv_config['registry']),
r'{}\/([^:]+):([^\'"\\\s]+)'.format(self.operator_csv_config['registry']),
collect_replaced_image,
contents,
flags=re.MULTILINE
Expand Down

0 comments on commit f97c289

Please sign in to comment.