mirror of
https://github.com/python/cpython.git
synced 2025-08-04 08:59:19 +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;
|
||||
|
||||
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;
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue