Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit fa06e5f

Browse files
committed
Whoops, not sure how I screwed up the name. Now builds and passes the test.
1 parent 8d3654d commit fa06e5f

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

Modules/syslogmodule.c

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -90,10 +90,10 @@ syslog_syslog(PyObject * self, PyObject * args)
9090
int priority = LOG_INFO;
9191

9292
if (!PyArg_ParseTuple(args, "iU;[priority,] message string",
93-
&priority, &message_objecct)) {
93+
&priority, &message_object)) {
9494
PyErr_Clear();
9595
if (!PyArg_ParseTuple(args, "U;[priority,] message string",
96-
&message_objecct))
96+
&message_object))
9797
return NULL;
9898
}
9999

0 commit comments

Comments
 (0)