Kaydet (Commit) fa06e5f0 authored tarafından Neal Norwitz's avatar Neal Norwitz

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

üst 8d3654db
...@@ -90,10 +90,10 @@ syslog_syslog(PyObject * self, PyObject * args) ...@@ -90,10 +90,10 @@ syslog_syslog(PyObject * self, PyObject * args)
int priority = LOG_INFO; int priority = LOG_INFO;
if (!PyArg_ParseTuple(args, "iU;[priority,] message string", if (!PyArg_ParseTuple(args, "iU;[priority,] message string",
&priority, &message_objecct)) { &priority, &message_object)) {
PyErr_Clear(); PyErr_Clear();
if (!PyArg_ParseTuple(args, "U;[priority,] message string", if (!PyArg_ParseTuple(args, "U;[priority,] message string",
&message_objecct)) &message_object))
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