diff options
author | Benjamin Peterson <benjamin@python.org> | 2013-07-21 13:29:42 -0700 |
---|---|---|
committer | Benjamin Peterson <benjamin@python.org> | 2013-07-21 13:29:42 -0700 |
commit | 7dcf518e4ea08e9c1fc1fe758a0b68a7e63de0fc (patch) | |
tree | 61eabe6b3b891d8334fa5b3ac8adabe9d01e62e6 /Python/traceback.c | |
parent | 25aae51eeb19b9cf2f112591bdf1ceb4b09ecc4c (diff) | |
parent | ba1a91cbbeab70174a33b128b1c68c2664cb49ff (diff) | |
download | cpython-7dcf518e4ea08e9c1fc1fe758a0b68a7e63de0fc.tar.gz |
merge 3.3
Diffstat (limited to 'Python/traceback.c')
-rw-r--r-- | Python/traceback.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Python/traceback.c b/Python/traceback.c index 8195d4037d..4f2e732779 100644 --- a/Python/traceback.c +++ b/Python/traceback.c @@ -324,7 +324,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) |