From a9a04a692488f54181a2d3a90412db096e782b82 Mon Sep 17 00:00:00 2001 From: Dan LaManna Date: Mon, 10 Feb 2020 19:55:00 -0500 Subject: [PATCH] lang/python: assert when python isn't installed --- modules/lang/python/doctor.el | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/lang/python/doctor.el b/modules/lang/python/doctor.el index 40637a75a..8ef41ee63 100644 --- a/modules/lang/python/doctor.el +++ b/modules/lang/python/doctor.el @@ -5,7 +5,7 @@ "This module requires (:tools lsp)") (if (not (executable-find "python")) - (warn! "Python isn't installed.") + (assert! "Python isn't installed.") (unless (featurep! +lsp) (unless (zerop (shell-command "python -c 'import setuptools'")) (warn! "setuptools wasn't detected, which anaconda-mode requires"))))