From ded5f63204fe9a936485b0ed33a7dd054aa6a2b2 Mon Sep 17 00:00:00 2001
From: Amir MOHAMMADI <amir.mohammadi@idiap.ch>
Date: Fri, 1 Oct 2021 17:31:40 +0200
Subject: [PATCH] fix index out of range

---
 bob/devtools/bootstrap.py | 3 +--
 1 file changed, 1 insertion(+), 2 deletions(-)

diff --git a/bob/devtools/bootstrap.py b/bob/devtools/bootstrap.py
index 53b4a651..a1b8e1d3 100644
--- a/bob/devtools/bootstrap.py
+++ b/bob/devtools/bootstrap.py
@@ -255,9 +255,8 @@ def ensure_miniconda_sh():
 
     assert (
         r1.status == 200
-    ), "Request for http://%s:%d%s - returned status %d " "(%s)" % (
+    ), "Request for http://%s%s - returned status %d " "(%s)" % (
         server[0],
-        server[1],
         path,
         r1.status,
         r1.reason,
-- 
GitLab