Skip to content
This repository was archived by the owner on Jul 3, 2025. It is now read-only.

Commit 9c5b314

Browse files
committed
fixed test.
1 parent b17865d commit 9c5b314

1 file changed

Lines changed: 4 additions & 1 deletion

File tree

mdingestion/community/bluecloud.py

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,10 @@ def source(self):
4848
source = []
4949
oru_urls = self._find("OnlineResourceUrl")
5050
for oru in oru_urls:
51-
url = f"https://data.blue-cloud.org{oru}"
51+
if "http" in oru:
52+
url = oru
53+
else:
54+
url = f"https://data.blue-cloud.org{oru}"
5255
source.append(url)
5356
return source
5457

0 commit comments

Comments
 (0)