summaryrefslogtreecommitdiffstats
path: root/src/if_python.c
diff options
context:
space:
mode:
authorBram Moolenaar <Bram@vim.org>2022-01-05 20:24:39 +0000
committerBram Moolenaar <Bram@vim.org>2022-01-05 20:24:39 +0000
commitd82a47dd0493ee976aa3f15ecdc9aea7da6ad5bf (patch)
tree604109254c7057942fce5c1af26fdd1bc36c066f /src/if_python.c
parentbb8cac56d9c398a2b546d9c81c15e8c3d8fd811e (diff)
patch 8.2.4012: error messages are spread outv8.2.4012
Problem: Error messages are spread out. Solution: Move the last error messages to errors.h.
Diffstat (limited to 'src/if_python.c')
-rw-r--r--src/if_python.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/if_python.c b/src/if_python.c
index 06d45d8c67..90f75ecad1 100644
--- a/src/if_python.c
+++ b/src/if_python.c
@@ -951,7 +951,7 @@ Python_Init(void)
site = PyImport_ImportModule("site");
if (site == NULL)
{
- emsg(_("E887: Sorry, this command is disabled, the Python's site module could not be loaded."));
+ emsg(_(e_sorry_this_command_is_disabled_python_side_module_could_not_be_loaded));
goto fail;
}
Py_DECREF(site);