From: Neal Norwitz Date: Sat, 25 Aug 2007 00:29:58 +0000 (+0000) Subject: Whoops, not sure how I screwed up the name. Now builds and passes the test. X-Git-Tag: v3.0a1~275 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=fa06e5f00f3e5f54ad97fbc93a3e9d199dc01fe8;p=python Whoops, not sure how I screwed up the name. Now builds and passes the test. --- diff --git a/Modules/syslogmodule.c b/Modules/syslogmodule.c index 08e4a369d4..355ac8ff49 100644 --- a/Modules/syslogmodule.c +++ b/Modules/syslogmodule.c @@ -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; }