From ff7c2426ac598ae91aafaf163e1be92be8550eee Mon Sep 17 00:00:00 2001 From: Michael Tremer Date: Fri, 1 Sep 2023 16:08:54 +0000 Subject: [PATCH] mirrors: Fix joining paths The original path of the mirror was unintentionally dropped. Signed-off-by: Michael Tremer --- src/buildservice/mirrors.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/buildservice/mirrors.py b/src/buildservice/mirrors.py index 2c0bcdf7..4ec3f025 100644 --- a/src/buildservice/mirrors.py +++ b/src/buildservice/mirrors.py @@ -170,7 +170,7 @@ class Mirror(base.DataObject): return self.make_url() def make_url(self, path=""): - url = "https://%s%s" % ( + url = "https://%s%s/" % ( self.hostname, self.path ) -- 2.47.3