fix formatting

This commit is contained in:
Benjamin Peterson 2012-01-03 16:47:22 -06:00
parent d204934ee3
commit a12d5c62f7
1 changed files with 1 additions and 1 deletions

View File

@ -494,7 +494,7 @@ builtin_format(PyObject *self, PyObject *args)
PyObject *format_spec = NULL;
if (!PyArg_ParseTuple(args, "O|U:format", &value, &format_spec))
return NULL;
return NULL;
return PyObject_Format(value, format_spec);
}