Author: neal.norwitz
Date: Sat Aug 25 02:29:58 2007
New Revision: 57438
Modified:
python/branches/py3k/Modules/syslogmodule.c
Log:
Whoops, not sure how I screwed up the name. Now builds and passes the test.
Modified: python/branches/py3k/Modules/syslogmodule.c
==============================================================================
--- python/branches/py3k/Modules/syslogmodule.c (original)
+++ python/branches/py3k/Modules/syslogmodule.c Sat Aug 25 02:29:58 2007
@@ -90,10 +90,10 @@
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;
}
_______________________________________________
Python-3000-checkins mailing list
[email protected]
http://mail.python.org/mailman/listinfo/python-3000-checkins