From a12d5c62f78640c274e7babd5b20744af5008837 Mon Sep 17 00:00:00 2001 From: Benjamin Peterson Date: Tue, 3 Jan 2012 16:47:22 -0600 Subject: fix formatting --- Python/bltinmodule.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Python/bltinmodule.c b/Python/bltinmodule.c index 9e37d21..11b7624 100644 --- a/Python/bltinmodule.c +++ b/Python/bltinmodule.c @@ -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); } -- cgit v0.12