From 04dba09670ebfc86b6724ca4a1417b032ad1be9e Mon Sep 17 00:00:00 2001 From: Oscar Wallberg Date: Wed, 6 Sep 2023 17:16:43 +0200 Subject: [PATCH] Fix undefined variable usage --- lua/utils.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lua/utils.lua b/lua/utils.lua index 5609cdd..02f6ecb 100644 --- a/lua/utils.lua +++ b/lua/utils.lua @@ -71,7 +71,7 @@ end ---@param mod string: The python module to check function M.assert_python3_module_installed(mod) if not M.python3_module_is_installed(mod) then - error("Python3 module " .. mod .. " not installed:\n" .. resp.stdout .. "\n" .. resp.stderr) + error("Python3 module " .. mod .. " not installed") end end