Skip to content

Commit ca72775

Browse files
committed
Correct line find
1 parent 9b21c8f commit ca72775

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

build_platform.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -354,8 +354,8 @@ def extract_dependencies(output):
354354
if re.match(r'Used library', line):
355355
IS_LIBS_FOUND = True
356356
print("Found libraries token using regex")
357-
print("find Version:", line.find(line, 'Version'))
358-
print("find Path:", line.find(line, 'Path'))
357+
print("find Version:", line.find('Version'))
358+
print("find Path:", line.find('Path'))
359359
COLS = [0,line.find('Version'), line.find('Path')]
360360
continue
361361
else:

0 commit comments

Comments
 (0)