From 7b3b09408cf04126eea4087c0955f27653e648b3 Mon Sep 17 00:00:00 2001
From: Andre Anjos <andre.dos.anjos@gmail.com>
Date: Tue, 29 Mar 2022 13:25:06 +0200
Subject: [PATCH] [bootstrap] Fix error message

---
 bob/devtools/bootstrap.py | 8 +++++---
 1 file changed, 5 insertions(+), 3 deletions(-)

diff --git a/bob/devtools/bootstrap.py b/bob/devtools/bootstrap.py
index 4b47575b..fa19efd9 100644
--- a/bob/devtools/bootstrap.py
+++ b/bob/devtools/bootstrap.py
@@ -269,9 +269,11 @@ def ensure_miniconda_sh():
             "Just downloaded miniconda3 installer sha256 checksum (%s) does "
             "NOT match expected value (%s). Removing downloaded installer. "
             "A wrong checksum may end up making the CI download too many copies "
-            "and be banned! You must fix this ASAP.",
-            actual_sha256,
-            sha256,
+            "and be banned! You must fix this ASAP."
+            % (
+                actual_sha256,
+                sha256,
+            )
         )
 
 
-- 
GitLab