From 86dfef68c129881eefb7ad61072ad2ec7acbf630 Mon Sep 17 00:00:00 2001 From: Marc Beninca Date: Sun, 14 Jul 2024 22:08:51 +0200 Subject: [PATCH] parts --- spcd/util.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/spcd/util.py b/spcd/util.py index 9bfc4b7..a73b251 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=str(Path(parts.path) / extra_path)) + parts = parts._replace(path=str(Path(parts.path) / extra_path)) return urlunparse(parts)