From b7925ed9a1a4c1b83d3622a0c6f0188fd17ea4db Mon Sep 17 00:00:00 2001 From: Gil Forcada Codinachs Date: Mon, 13 Jul 2026 09:18:36 +0200 Subject: [PATCH] fix(including): add missing trailing slash --- src/mxdev/including.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/mxdev/including.py b/src/mxdev/including.py index f88e83e..56a0818 100644 --- a/src/mxdev/including.py +++ b/src/mxdev/including.py @@ -39,7 +39,7 @@ def resolve_dependencies( tf.flush() file = Path(tf.name) parts = list(parsed) - parts[2] = str(Path(parts[2]).parent) + parts[2] = str(Path(parts[2]).parent) + '/' http_parent = parse.urlunparse(parts) else: file = Path(file_or_url)