We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2856c51 commit 65ca8e6Copy full SHA for 65ca8e6
src/pl/plpython/plpy_plpymodule.c
@@ -174,10 +174,10 @@ PLy_init_plpy(void)
174
main_dict = PyModule_GetDict(main_mod);
175
plpy_mod = PyImport_AddModule("plpy");
176
if (plpy_mod == NULL)
177
- PLy_elog(ERROR, "could not initialize plpy");
+ PLy_elog(ERROR, "could not import \"plpy\" module");
178
PyDict_SetItemString(main_dict, "plpy", plpy_mod);
179
if (PyErr_Occurred())
180
181
}
182
183
static void
0 commit comments