From c8fa8fa7c31f31ccfc23853518841cc9473e6e33 Mon Sep 17 00:00:00 2001 From: Nikolas Date: Fri, 13 Sep 2024 08:58:00 -0700 Subject: [PATCH] compile --- godot_compile/godot_compile_utils.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/godot_compile/godot_compile_utils.py b/godot_compile/godot_compile_utils.py index 5fabc3e..0f2288d 100644 --- a/godot_compile/godot_compile_utils.py +++ b/godot_compile/godot_compile_utils.py @@ -61,7 +61,7 @@ def install_miniconda() -> str: try: output = subprocess.check_output(command, stderr=subprocess.PIPE, text=True) except Exception as err: - raise Exception("could not install miniconda using command %s", " ".join(command)) from err + raise Exception("could not install miniconda using command %s" % " ".join(command)) from err return output