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 | c3e10c237b977ef7e180085f9ba04f58b663b122 (patch) | |
tree | 19b3d915143da57cb7900aefc47358eba254aed1 /Python/traceback.c | |
parent | 33113a3504c8ae2567b18fe39d283f985f01defe (diff) | |
parent | 0f9b7d32c73dd4e729fbb7f779f99f4e84644578 (diff) | |
download | cpython-git-c3e10c237b977ef7e180085f9ba04f58b663b122.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) |