From a89a55ae8055861532a02799d54197d0b645e9f3 Mon Sep 17 00:00:00 2001 From: Christian Monch Date: Tue, 16 Jul 2024 09:52:58 +0200 Subject: [PATCH] fix(`CreateSiblingRia`): canonify push-url correctly This patch foxes a bug where the canonified ria-store URL was assigned to `push_url` instead of the canonified ria-store push-URL. --- datalad_next/patches/replace_create_sibling_ria.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/datalad_next/patches/replace_create_sibling_ria.py b/datalad_next/patches/replace_create_sibling_ria.py index 16f822bd..d68b0a76 100644 --- a/datalad_next/patches/replace_create_sibling_ria.py +++ b/datalad_next/patches/replace_create_sibling_ria.py @@ -344,7 +344,7 @@ def __call__(url, # be different for subdatasets. # PATCH: use canonified representation of `url` and `push_url` url = canonify_url(url) - push_url = canonify_url(url) + push_url = canonify_url(push_url) try: ssh_host, url_base_path_str, rewritten_url = \