diff options
author | Bram Moolenaar <Bram@vim.org> | 2022-01-05 20:24:39 +0000 |
---|---|---|
committer | Bram Moolenaar <Bram@vim.org> | 2022-01-05 20:24:39 +0000 |
commit | d82a47dd0493ee976aa3f15ecdc9aea7da6ad5bf (patch) | |
tree | 604109254c7057942fce5c1af26fdd1bc36c066f /src/if_python.c | |
parent | bb8cac56d9c398a2b546d9c81c15e8c3d8fd811e (diff) | |
download | vim-git-d82a47dd0493ee976aa3f15ecdc9aea7da6ad5bf.tar.gz |
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.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/if_python.c b/src/if_python.c index 06d45d8c6..90f75ecad 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); |