Skip to content

Commit

Permalink
Merge pull request #213 from M3nin0/marketplace
Browse files Browse the repository at this point in the history
checker: updating links extraction rule
  • Loading branch information
M3nin0 authored Apr 4, 2024
2 parents 018aa66 + df94b18 commit 18e6d27
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion geo_rdm_records/modules/checker/links/checker/metadata.py
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ def _extract_links(record_document):
# Find all non-overlapping matches of the pattern in the string
return py_.map(
re.findall(url_pattern, record_document),
lambda x: x.strip(").").strip(" "),
lambda x: x.strip(").").replace(" ", ""),
)


Expand Down

0 comments on commit 18e6d27

Please sign in to comment.