str()
Some checks failed
/ job (push) Failing after 7m45s

This commit is contained in:
Marc Beninca 2024-07-14 20:55:56 +02:00
parent fdea0af27c
commit 7795294175
Signed by: marc.beninca
GPG key ID: 9C7613450C80C24F

View file

@ -9,7 +9,7 @@ from rwx.log import stream as log
def add_url_path(url: str, extra_path: str) -> str: def add_url_path(url: str, extra_path: str) -> str:
parts = urlparse(url) parts = urlparse(url)
parts._replace(path=Path(parts.path) / extra_path) parts._replace(path=str(Path(parts.path) / extra_path))
return urlunparse(parts) return urlunparse(parts)