From 779529417528c8fd3ee63adca0cdc16614df13fa Mon Sep 17 00:00:00 2001 From: Marc Beninca Date: Sun, 14 Jul 2024 20:55:56 +0200 Subject: [PATCH] str() --- spcd/util.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/spcd/util.py b/spcd/util.py index 9bae59f..9bfc4b7 100644 --- a/spcd/util.py +++ b/spcd/util.py @@ -9,7 +9,7 @@ from rwx.log import stream as log def add_url_path(url: str, extra_path: str) -> str: parts = urlparse(url) - parts._replace(path=Path(parts.path) / extra_path) + parts._replace(path=str(Path(parts.path) / extra_path)) return urlunparse(parts)