From: Benjamin Peterson Date: Tue, 3 Jan 2012 22:47:22 +0000 (-0600) Subject: fix formatting X-Git-Tag: v3.2.3rc1~215 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=a12d5c62f78640c274e7babd5b20744af5008837;p=thirdparty%2FPython%2Fcpython.git fix formatting --- diff --git a/Python/bltinmodule.c b/Python/bltinmodule.c index 9e37d21b5df5..11b7624e4173 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); }