Skip to content

Commit f4f98e6

Browse files
committed
Flake
1 parent a27db1a commit f4f98e6

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

tools/building.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -389,10 +389,10 @@ def llvm_nm_multiple(files):
389389
if nl < 0:
390390
break
391391
colon = results.rfind(':', i, nl)
392-
if colon >= 0 and results[colon+1] == '\n': # New file start?
392+
if colon >= 0 and results[colon + 1] == '\n': # New file start?
393393
nm_cache[filename] = parse_symbols(results[file_start:i-1])
394394
filename = results[i:colon].strip()
395-
file_start = colon+2
395+
file_start = colon + 2
396396
i = nl + 1
397397

398398
nm_cache[filename] = parse_symbols(results[file_start:])

0 commit comments

Comments
 (0)