diff options
author | Benjamin Peterson <benjamin@python.org> | 2012-01-03 16:47:22 -0600 |
---|---|---|
committer | Benjamin Peterson <benjamin@python.org> | 2012-01-03 16:47:22 -0600 |
commit | 0f97cff6c6f527fcb4c4b7acad30cfb54b146934 (patch) | |
tree | c2b91c138a703a55b5d2af90887c2928e32efffa | |
parent | 6b232b487c58b37a1272d773dc13f42d78994ec2 (diff) | |
download | cpython-0f97cff6c6f527fcb4c4b7acad30cfb54b146934.tar.gz |
fix formatting
-rw-r--r-- | Python/bltinmodule.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Python/bltinmodule.c b/Python/bltinmodule.c index 9e37d21b5d..11b7624e41 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); } |