summaryrefslogtreecommitdiffstats
path: root/Python
diff options
context:
space:
mode:
authorBenjamin Peterson <benjamin@python.org>2013-07-21 20:29:37 (GMT)
committerBenjamin Peterson <benjamin@python.org>2013-07-21 20:29:37 (GMT)
commit0f9b7d32c73dd4e729fbb7f779f99f4e84644578 (patch)
tree5ed2f2f917ffea2d3813bc33c3b676dfcccc20c0 /Python
parent04b01dc8f78ee8a549e6011ee26d8de5cc6184c4 (diff)
downloadcpython-0f9b7d32c73dd4e729fbb7f779f99f4e84644578.zip
cpython-0f9b7d32c73dd4e729fbb7f779f99f4e84644578.tar.gz
cpython-0f9b7d32c73dd4e729fbb7f779f99f4e84644578.tar.bz2
fix spacing
Diffstat (limited to 'Python')
-rw-r--r--Python/traceback.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/Python/traceback.c b/Python/traceback.c
index d19c594..74075c9 100644
--- a/Python/traceback.c
+++ b/Python/traceback.c
@@ -322,7 +322,7 @@ _Py_DisplaySourceLine(PyObject *f, PyObject *filename, int lineno, int indent)
strcpy(buf, " ");
assert (strlen(buf) == 10);
while (indent > 0) {
- if(indent < 10)
+ if (indent < 10)
buf[indent] = '\0';
err = PyFile_WriteString(buf, f);
if (err != 0)