Skip to content

Commit 395760c

Browse files
committed
Remove trailing '/' from base url when building resource location path
1 parent 86103b5 commit 395760c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

fhirpy/base/client.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -145,7 +145,7 @@ def _build_request_url(self, path, params) -> str:
145145
" (possible security issue)"
146146
)
147147
path = path.lstrip("/")
148-
base_url_path = URL(self.url).path.lstrip("/") + "/"
148+
base_url_path = URL(self.url.rstrip("/")).path.lstrip("/") + "/"
149149
path = remove_prefix(path, base_url_path)
150150
params = params or {}
151151

0 commit comments

Comments
 (0)