mirror of
https://github.com/AdaCore/cpython.git
synced 2026-02-12 12:57:15 -08:00
Whoops, not sure how I screwed up the name. Now builds and passes the test.
This commit is contained in:
@@ -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;
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user