Commit 0f97cff6 authored by Benjamin Peterson's avatar Benjamin Peterson

fix formatting

parent 6b232b48
...@@ -494,7 +494,7 @@ builtin_format(PyObject *self, PyObject *args) ...@@ -494,7 +494,7 @@ builtin_format(PyObject *self, PyObject *args)
PyObject *format_spec = NULL; PyObject *format_spec = NULL;
if (!PyArg_ParseTuple(args, "O|U:format", &value, &format_spec)) if (!PyArg_ParseTuple(args, "O|U:format", &value, &format_spec))
return NULL; return NULL;
return PyObject_Format(value, format_spec); return PyObject_Format(value, format_spec);
} }
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment