From aac95a7354703caaf48b7ecc0e8f10b99c0e4551 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Lucas=20Serv=C3=A9n=20Mar=C3=ADn?= Date: Fri, 16 Feb 2024 19:47:34 +0100 Subject: [PATCH] chore: tidy up loose reference to conda in generic message MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Lucas Servén Marín --- src/isolate/backends/common.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/isolate/backends/common.py b/src/isolate/backends/common.py index c4f21ef..277c2c3 100644 --- a/src/isolate/backends/common.py +++ b/src/isolate/backends/common.py @@ -250,6 +250,6 @@ def get_executable(command: str, home: str | None = None) -> Path: # TODO: we should probably show some instructions on how you # can install conda here. raise FileNotFoundError( - f"Could not find {command} executable. If {command} executable is not available by default, please point isolate " - f" to the path where conda binary is available '{home}'." + f"Could not find the {command} executable. If the {command} executable is not available by default, please point isolate " + f" to the path where the {command} binary is available '{home}'." )