Fix undefined variable usage

This commit is contained in:
2023-09-06 17:16:43 +02:00
parent 935de7372c
commit 04dba09670
+1 -1
View File
@@ -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