Kaydet (Commit) 4857543a authored tarafından Carl Meyer's avatar Carl Meyer Kaydeden (comit) Ned Deily

Fix typo in error message when decoding PYTHONPATH. (GH-6981)

üst 654038d8
......@@ -1831,7 +1831,7 @@ config_read_env_vars(_PyCoreConfig *config)
wchar_t *path;
int res = config_get_env_var_dup(&path, L"PYTHONPATH", "PYTHONPATH");
if (res < 0) {
return DECODE_LOCALE_ERR("PYTHONHOME", res);
return DECODE_LOCALE_ERR("PYTHONPATH", res);
}
config->module_search_path_env = path;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment