From 3182f1a4aa6b0a18237c570d666b7002fede51e4 Mon Sep 17 00:00:00 2001 From: "Michael R. Crusoe" Date: Mon, 27 Sep 2021 18:16:40 +0200 Subject: [PATCH] cope with URLs in run field Fixes #12 --- sbpack/lib.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sbpack/lib.py b/sbpack/lib.py index 1833023..09b59c2 100644 --- a/sbpack/lib.py +++ b/sbpack/lib.py @@ -122,7 +122,7 @@ def resolved_path(base_url: urllib.parse.ParseResult, link: str): else: # Absolute remote path - new_url = urllib.parse.ParseResult(link_url) + new_url = link_url return new_url