Skip to content

Commit 649c6d0

Browse files
author
Oleksandr Bazarnov
committed
updated else condition
1 parent 6280bfd commit 649c6d0

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

airbyte_cdk/sources/declarative/requesters/http_requester.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -381,7 +381,7 @@ def _join_url(cls, url_base: str, path: str) -> str:
381381
# since we didn't provide a full-url, the url_base might not have a trailing slash
382382
# so we join the url_base and path correctly
383383
if not url_base.endswith("/"):
384-
url_base = os.path.join(url_base, EmptyString)
384+
url_base += "/"
385385

386386
return urljoin(url_base, path)
387387

0 commit comments

Comments
 (0)