Whoops, not sure how I screwed up the name. Now builds and passes the test.

This commit is contained in:
Neal Norwitz 2007-08-25 00:29:58 +00:00
parent 8d3654db22
commit fa06e5f00f

View file

@ -90,10 +90,10 @@ syslog_syslog(PyObject * self, PyObject * args)
int priority = LOG_INFO;
if (!PyArg_ParseTuple(args, "iU;[priority,] message string",
&priority, &message_objecct)) {
&priority, &message_object)) {
PyErr_Clear();
if (!PyArg_ParseTuple(args, "U;[priority,] message string",
&message_objecct))
&message_object))
return NULL;
}