merge 3.3

This commit is contained in:
Benjamin Peterson 2013-07-21 13:29:42 -07:00
commit c3e10c237b
1 changed files with 1 additions and 1 deletions

View File

@ -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)