mirror of
https://github.com/python/cpython.git
synced 2025-09-26 18:29:57 +00:00
Whoops, not sure how I screwed up the name. Now builds and passes the test.
This commit is contained in:
parent
8d3654db22
commit
fa06e5f00f
1 changed files with 2 additions and 2 deletions
|
@ -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;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue