Skip to content

Commit 57aa14f

Browse files
committed
Dont print it anymore + skip blanks
1 parent ca72775 commit 57aa14f

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

build_platform.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -349,7 +349,8 @@ def extract_dependencies(output):
349349
platforms = []
350350
COLS = []
351351
for i,line in enumerate(output.split('\n')):
352-
print(i,": ",line)
352+
if line.strip() == '':
353+
continue
353354
if not IS_LIBS_FOUND:
354355
if re.match(r'Used library', line):
355356
IS_LIBS_FOUND = True

0 commit comments

Comments
 (0)