Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit 0f9b7d3

Browse files
committed
fix spacing
1 parent 04b01dc commit 0f9b7d3

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

Python/traceback.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -322,7 +322,7 @@ _Py_DisplaySourceLine(PyObject *f, PyObject *filename, int lineno, int indent)
322322
strcpy(buf, " ");
323323
assert (strlen(buf) == 10);
324324
while (indent > 0) {
325-
if(indent < 10)
325+
if (indent < 10)
326326
buf[indent] = '\0';
327327
err = PyFile_WriteString(buf, f);
328328
if (err != 0)

0 commit comments

Comments
 (0)