diff options
author | Alvaro Herrera | 2017-05-25 17:16:00 +0000 |
---|---|---|
committer | Alvaro Herrera | 2017-05-25 17:16:00 +0000 |
commit | ea3e310e712ac53653d4100ea2a7c516c30d4971 (patch) | |
tree | 0d4355eaaca64de6885168a94d35ca0f601dbd49 | |
parent | 04f1798eaa0aeff81f90e2d28679b0a2cd267b8e (diff) |
Fix message case
-rw-r--r-- | src/pl/plpython/plpy_plpymodule.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/pl/plpython/plpy_plpymodule.c b/src/pl/plpython/plpy_plpymodule.c index 761534406d..ad160aeec3 100644 --- a/src/pl/plpython/plpy_plpymodule.c +++ b/src/pl/plpython/plpy_plpymodule.c @@ -466,7 +466,7 @@ PLy_output(volatile int level, PyObject *self, PyObject *args, PyObject *kw) /* the message should not be overwritten */ if (PyTuple_Size(args) != 0) { - PLy_exception_set(PyExc_TypeError, "Argument 'message' given by name and position"); + PLy_exception_set(PyExc_TypeError, "argument 'message' given by name and position"); return NULL; } |