0
0
mirror of https://github.com/vim/vim.git synced 2025-10-23 08:44:20 -04:00

patch 9.1.1500: if_python: typo in python error variable

Problem:  if_python: typo in python error variable
Solution: fix typo (Damien Lejay)

closes: #17640

Signed-off-by: Damien Lejay <damien@lejay.be>
Signed-off-by: Christian Brabandt <cb@256bit.org>
This commit is contained in:
Damien Lejay
2025-07-01 21:57:59 +02:00
committed by Christian Brabandt
parent 54585fd04c
commit b84ab0288f
3 changed files with 4 additions and 2 deletions

View File

@@ -958,7 +958,7 @@ Python_Init(void)
site = PyImport_ImportModule("site");
if (site == NULL)
{
emsg(_(e_sorry_this_command_is_disabled_python_side_module_could_not_be_loaded));
emsg(_(e_sorry_this_command_is_disabled_python_site_module_could_not_be_loaded));
goto fail;
}
Py_DECREF(site);