Commit ea3e310e authored by Alvaro Herrera's avatar Alvaro Herrera

Fix message case

parent 04f1798e
...@@ -466,7 +466,7 @@ PLy_output(volatile int level, PyObject *self, PyObject *args, PyObject *kw) ...@@ -466,7 +466,7 @@ PLy_output(volatile int level, PyObject *self, PyObject *args, PyObject *kw)
/* the message should not be overwritten */ /* the message should not be overwritten */
if (PyTuple_Size(args) != 0) 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; return NULL;
} }
......
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