#7613: missing ) in flmodule.c

This commit is contained in:
Ezio Melotti 2009-12-31 13:47:24 +00:00
parent 763f1e8d32
commit aac4df68d8
1 changed files with 1 additions and 1 deletions

View File

@ -156,7 +156,7 @@ generic_set_call_back(genericobject *g, PyObject *args)
}
else {
PyObject *a, *b;
if (!PyArg_UnpackTuple(args, "set_call_back", 2, 2, &a, &b)
if (!PyArg_UnpackTuple(args, "set_call_back", 2, 2, &a, &b))
return NULL;
Py_XDECREF(g->ob_callback);
Py_XDECREF(g->ob_callback_arg);